Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6089217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:04:29+00:00 2026-05-23T12:04:29+00:00

I have got a ResultSet after firing a query. Kindly let me know how

  • 0

I have got a ResultSet after firing a query. Kindly let me know how i can convert it to a JSON output in JSP.

In the second stage, lets assume that we have got a JSON output like in this link > http://inknpost.com/eshopping/json.jsp

The above file is being accessed by a $.getJSON(); in another file.

Kindly let me know how can i display the “names” and the “departments” in different rows in a page.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:04:29+00:00Added an answer on May 23, 2026 at 12:04 pm

    Create a reuseable Javabean class which represents one row, a single entity.

    public class Category {
        private Long id;
        private String name;
        private String department;
    
        // Add/generate getters/setters/c'tors/equals/hashcode and other boilerplate.
    }
    

    Create a reuseable DAO class which maps the ResultSet to a collection of those Javabeans the usual JDBC way.

    public class CategoryDAO {
        private static final String SQL_LIST = "SELECT id, name, department FROM category";
        // ...
    
        public List<Category> list() throws SQLException {
            List<Category> categories = new ArrayList<Category>();
    
            try (
                Connection connection = database.getConnection();
                PreparedStatement statement = connection.prepareStatement(SQL_LIST);
                ResultSet resultSet = statement.executeQuery();
            ) {
                while (resultSet.next()) {
                    Category category = new Category();
                    category.setId(resultSet.getLong("id"));
                    category.setName(resultSet.getString("name"));
                    category.setDepartment(resultSet.getString("department"));
                    categories.add(category);
                }
            }
    
            return categories;
        }
    
        // ...
    }
    

    Create a servlet class which uses a JSON serializer/deserializer which is able to convert between an arbirary collection of Javabeans and a JSON String, such as Google Gson.

    @WebServlet("/categories.json")
    public class CategoriesJsonServlet extends HttpServlet {
    
        @Override
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            try {
                List<Category> categories = categoryDAO.list();
                String categoriesJson = new Gson().toJson(categories);
                response.setContentType("application/json");
                response.setCharacterEncoding("UTF-8");
                response.getWriter().write(categoriesJson);
            } catch (SQLException e) {
                throw new ServletException("DB error", e);
            }
        }
    
    }
    

    Invoke it by http://localhost:8080/contextname/categories.json. No, there is no JSP involved. You should not be using JSP for output formats other than HTML.

    Finally, in jQuery, just access it the usual $.getJSON() way.

    $('#somebutton').click(function() {
        $.getJSON('categories.json', function(categoriesJson) {
            var $table = $('<table>').appendTo($('#somediv'));
            $.each(categoriesJson, function(index, category) {
                $('<tr>').appendTo($table)
                    .append($('<td>').text(category.id))
                    .append($('<td>').text(category.name))
                    .append($('<td>').text(category.department));
            });
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a hex string after RSA encryption. When I convert it to a
This is the second time I have got confusing results from the modulo operator,
Have got an NSString *str = @12345.6789 and want to find out if there
I have got this code: XDocument xdoc = XDocument.Load(URI); XElement root = xdoc.Element(forecast); //get
I have got a Wavecom Supreme GSM modem. I wrote a simple application that
I have got a field that has been setup to allow for Null, but
I have got an ActiveX Control that gets an image from a fingerprint device
I have got a demo script that lets me authorize with my app and
I have got Foo <=> FooGroup <=> Bar relation, where <=> stands for ManyToMany
I have got method which is using Assembly.LoadFrom(...) statement and returns the supported cultures

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.