Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tliebscher

    pass parameter from Java Application to Servlet

    the problem is, taht for some reason you need to read the answer, too. Just try the following: URLConnection conn = url.openConnection(); conn.connect(); BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream())); String inb = new String(""); StringBuffer sb...
  2. tliebscher

    Eclipse Getter/Setter-creation

    We're using the checkstyle plugin for 2 weeks now and had to realize that it requests all methods in non-static classes and all parameters to be final (with the standard SUN checks activated). Now this is all right until it comes to getters and setters. The problem is that i couldn't find a way...

Part and Inventory Search

Back
Top