NumberFormatException

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chaarmann
    Recognized Expert Contributor
    • Nov 2007
    • 785

    #31
    Did you apply the glassfish-patch?

    Can you please quote the HTML here?

    What about the blank page, can you quote its HTML here, too?

    When you get the blank page, then was it going to inbox.jsp before, or it went somewehre else? That means, if you insert a System.out.prin t statement inside inbox.jsp right at the beginning, was something printed?

    Comment

    • oll3i
      Contributor
      • Mar 2007
      • 679

      #32
      with
      Code:
      String k=request.getParameter("k");System.out.println("k="+k);
      i get in output k=+

      Comment

      • oll3i
        Contributor
        • Mar 2007
        • 679

        #33
        with
        Code:
        String k=request.getParameter("k");
                String f=request.getParameter("f");
             
                System.out.println("k="+k);
                System.out.println("f="+f);
        i get k=+ and f=0 what is correct
        now i have to work on doGet :)

        Thank You

        Comment

        • oll3i
          Contributor
          • Mar 2007
          • 679

          #34
          how do i compare %2B

          ??
          Code:
          if(k.contentEquals("%2B")){
          ???

          Comment

          • oll3i
            Contributor
            • Mar 2007
            • 679

            #35
            k.equals("+"); works

            Comment

            Working...