test.jsp
上传用户:xjrzjk
上传日期:2022-07-31
资源大小:1585k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ page import="java.sql.*"%>
  3. <%@ page import="javax.sql.*"%>
  4. <html>
  5. <head>
  6. <title>
  7. test
  8. </title>
  9. </head>
  10. <%! private int intResult = 0;
  11.   private void doSomething(){
  12.     System.out.println("注册成功!");
  13.   }
  14. %>
  15. <% //this.doSomething();%>
  16. <body bgcolor="#ffffff">
  17. <h1>
  18. JBuilder Generated JSP
  19. </h1>
  20. <%
  21.   try{
  22. //      Class.forName("oracle.jdbc.driver.OracleDriver");
  23. //      String url = "jdbc:oracle:thin:@slight:1521:LOCAL";
  24. //      String strUser = "eshop";
  25. //      String strPassword = "eshop";
  26. //      Connection con = DriverManager.getConnection(url,strUser,strPassword);
  27. //      Statement st = con.createStatement();
  28. //      ResultSet rs = st.executeQuery("select * from Product");
  29. //      while(rs.next()){
  30. //        System.out.println("the resultset is : " + rs.getString("Product_Name"));
  31. //      }
  32. //      String strMsg = "哈哈";
  33. //      out.println("哈哈,测试成功了!");
  34. //  double db1 = 3.0;
  35. //  double db2 = 2;
  36. //  out.println("**********" + String.valueOf(4/2));
  37. //  out.println("*************" + String.valueOf((double)4/2));
  38. //  out.println("*************" + (3/2 == (double)3/2));
  39.   }catch(Exception e){
  40.     //错误处理
  41.     throw (e);
  42.   }
  43. %>
  44. <form name="dataform" action="test1.jsp?msg=呵呵我不知道" method="post">
  45.   <input type="hidden" name="msg1" value="哈哈">
  46.   <input type="button" name="button" value="通过post提交" onclick="document.dataform.submit();">
  47. </form>
  48. </body>
  49. </html>