<form action="regist.servlet" method="post"><table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="tableAdd borTop"> <tr> <th width="14%" height="30" nowrap>用户名</th> <td class="pl5"> <INPUT id="sName" name="name" type="text" size="20"> </td> </tr> <tr> <灶敬th width="14%" height="30" nowrap>密码</th> <td class="pl5"隐燃慎> <INPUT name="password" type="password" size="20"> </td> </tr> <tr> <th width="14%" height="30" nowrap>确认密码</th> <td class="pl5"> <INPUT name="confrimPwd" type="password" size="20"> </td> </tr> <tr> <th width="14%" height="30" nowrap>性别</th> <td class="pl5"> 男<INPUT name="sex" type="radio" value="1" checked="checked" size="20"> 女<INPUT name="sex" type="radio" value="0" size="20"> </td> </tr> <tr> <th width="14%" height="30" nowrap>爱好</th> <td class="pl5"> <INPUT name="enjoy" type="checkbox" size="20" value="篮球">篮球<INPUT name="enjoy" type="checkbox" size="20" value="足球">足球</td> </tr> <tr> <th width="14%" height="30" nowrap>生日</th> <td class="pl5"> <INPUT name="brithday" type="text" size="20"> </td> </tr> <tr> <th width="14%" height="30" nowrap>备注</th> <td class="pl5"> <textarea rows="5" cols="200" name="remark"><段行/textarea> </td> </tr> <tr> <th width="14%" height="30" nowrap></th> <td class="pl5"> <input type="submit" value="提交"> <input type="reset" value="重置"> </td> </tr></table></form>
数据库部分:
import java.sql.DriverManagerimport java.sql.ResultSetimport java.sql.SQLExceptionimport com.mysql.jdbc.Connectionimport com.mysql.jdbc.Statementpublic class DataBaseUtil { public static Connection getConnection() throws ClassNotFoundException, SQLException { Class.forName("com.mysql.jdbc.Driver")Connection conn = (Connection) DriverManager.getConnection("jdbc:mysql://192.168.100.113/datebase", "username", "password")return conn} public static Statement getPS() throws ClassNotFoundException, SQLException { Statement statement = (Statement) getConnection().createStatement()return statement} public static void close(Connection conn,Statement st,ResultSet rs) throws SQLException{ if(rs != null) { rs.close()} if(st != null) { st.close()} if(conn != null) { conn.close()} }}
具体启中编写 *** 作如下:
1.打开WEB,图中示例为一个显示一组随机数组的程序,程序名称为ex14.c。编写完成后,同时按下键盘的【alt】和字母【X】键。
2.在下方空格栏处输入【游旁罩compile】,回车。
3.出现了make -k字样,全部删除,输入【gcc -o 新文件名 旧文件名】。示例为【gcc -o ex14 ex14.c】,回车。
4.可以看到emacs显示被结成两部分,上一部分为程序,下一部分显示出了程序错误。图中示例错误以用红色方框圈出,程序语句句末应为分号。根据错误提示改正错误即可。
5.确定全部改完后再按照之前的步骤重新 *** 作一遍,此时错误提示框中出现了绿色字体的【finished】,表示程序没有错误了,可以运行。
6.打神闹开terminal,输入【./ex14】,回车,程序已经开始运行了。如图是程序运行结果,可多次输入使其运行。
1 从主菜单中选择 "File"(文件)>"New Project"(新建项目)(Ctrl-Shift-N 组合键)。在 "Categories"(类别)下,选择 "Java Web"。在 "Projects"(项目)下选择 "Web Application"(Web 应用程序),然后单击 "Next"(下一步)。2 在步骤 2 中,在 "Project Name"(项目名称)文本框中输入 HelloWeb。
3 将 "Project Location"(项目位置)指定为计算机上的任意目录。并举凯在本教程中,将此目录称为 $PROJECTHOME。
4(可选)选中“使用专用文件夹存储库”复选框,并指定库文件夹的位置。有关此选项的详细信息,请答档参见使用 NetBeans IDE 开发应用程序中的创建 Java 项目。
5 单击 "Next"(下一步)。此时将打开 "Server and Settings"(服绝唤务器和设置)面板。选择要与应用程序一起使用的 Java EE 版本。
6 选择要在其中部署应用程序的服务器。这里仅列出了已在 IDE 中注册的服务器。请注意,服务器上的上下文路径将变为 /HelloWeb(基于您在上一步中为项目指定的名称)。
7 单击 "Finish"(完成)。
8 IDE 将创建 $PROJECTHOME/HelloWeb 项目文件夹。您可以在 "Files"(文件)窗口(Ctrl-2 组合键)中查看项目的文件结构,在 "Projects"(项目)窗口(Ctrl-1 组合键)中查看其逻辑结构。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)