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

  • SEARCH
  • Home
  • 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 668599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:03:30+00:00 2026-05-14T00:03:30+00:00

I found this post that shows how to pass multiple check box selections to

  • 0

I found this post that shows how to pass multiple check box selections to another JSP page, but it’s not working for me. When I try to get the selected values I get:

checked boxes: [Ljava.lang.String;@3f3fbd

Here are my two pages (be gentle, this is my first attempt at JSP!)

createSHAREfile.jsp basically runs a query to find all the terms that have not been processed and show each term with a check box next to it:

  <title>Create SHARE Files</title>
</head>
<body>
  <jsp:include page="../menu/header.jsp" flush="false" />
  <form name='SelectSHARETerms' method='post' action="SHAREProcessing.jsp">
    <fieldset><legend>Select Terms to Process for SHARE</legend>
    <table align='left'>
    <% String termDetail = "", currDate = "";
       currentDateTime datetime = new currentDateTime();
       datetime.setCurrDate();
       currDate = datetime.getCurrDate();
       java.sql.Date todayDate = java.sql.Date.valueOf(currDate);
       Terms terms = new Terms();
       ArrayList<Terms.termsTable> termsObjList = new ArrayList<Terms.termsTable>();
       terms.setTermsSql("Select * from Terms where TermDate <= '" + currDate + "' AND VoucherProcessDate Is Null");
       boolean indicator = terms.setListOfTerms();
       if (indicator == true) {
         int size = terms.getListSize();
         termsObjList = terms.getTermsList();
         for (int i=0; i<size; ++i) {
           Terms.termsTable eachTerm = (Terms.termsTable)termsObjList.get(i);
           java.sql.Date termDate = eachTerm.TermDate;
     %>         
      <tr><td><input type=checkbox name=SelectedTermDate id='SelectedTermDate<%=i%>' value="<%=i%>"><%=termDate %></td></tr>
    <%
         }
       }
     %>
      <tr><td align='center'><input type='submit' value='Submit'></input></td></tr>
    </table>
    </fieldset>
    </form>
  </body>
</html>

When the submit button is pressed I call SHAREProcessing.jsp. Right now all i’m trying to do on this page is show which termdates the user has selected so I can use them as parameters to a Java Class that will create the files for the selected terms:

  <title>SHARE Processing</title>
</head>
<body>
<jsp:include page="../menu/header.jsp" flush="false" />
<table width='50%' align='center' border='1'>
 <% String[] SelectedValues = request.getParameterValues("SelectedTermDate");
    System.out.println("checked boxes: " + SelectedValues);
  %>
</body>
</html>

Here’s where I’m trying to use the code shown in the other post but it’s not working 🙁

Thanks for any help!
Leslie

  • 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-14T00:03:30+00:00Added an answer on May 14, 2026 at 12:03 am

    You’re trying to print the whole string array with System.out.println, and so you get that. It’s probably working fine.

    Try this:

    System.out.println("checked boxes:");
    for (int i = 0; i < SelectedValues.length; ++i)
      System.out.println("  " + SelectedValues[i]);
    

    Also, I beg you: in your spare time, find out about a modern web framework (there are zillions for Java) and strive to escape from the painful world of coding Java inside JSP files.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently found this post . It basically says that Eclipse has a modified
I found this post on Crystal Reports Cutting Off Text in PDF , but
like in this post here by exemple I have found this blog but in
I've done a bit of searching around and found this post ... But i'm
I found this post useful and important to share, so if anybody has problems
I found this post: What's the Best Way to Shuffle an NSMutableArray? And as
Im very new in C++ I have found this post http://msdn.microsoft.com/en-us/magazine/cc163486.aspx and trying to
I wanted to use groovy for a little ftp script and found this post
I have set a property across threads before and I found this post Cross-thread
I thought that I should use JSON for ID/pass storing format once, but I

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.