欢迎访问服务器技术网-www.fuwuqijishu.com

JAVA 能不能实现vfp或者vb等语言的功能呀。

程序设计 fuwuqijishu 2年前 (2022-10-01) 12次浏览 0个评论 扫描二维码

关于能不能用java做一个成绩管理系统,实现其原来的功能。注:原来是用VFP做的。谢谢各位了!的问题

当然可以啦
你可先建一下项目
再项目里可任你加多少个JDialog 在JDialog中你可设成像VF一样的表单
如你可在其中一个JDialog中添加两个JTextField用来输入用户名和密码
再添加两个按钮用来 确定登陆或取消登陆
不过你要在代码中建立数据库连接
如:
Statement stmt;
ResultSet rs;
Connection con=null;
String url=” :AAA”;
其中AAA为你的数据库名。
try
{
rName(“sun。jdbc。odbc。JdbcOdbcDriver”);
}
catch(ClassNotFoundException e)
{
intln(e);
}

。。。。。。。。。
try{
con = tConnection(url);
String a=”Select * from user where 用户名 =’”+ tText()。trim()+”‘and 密码=’”+ tText()。
trim()+”‘” ;
stmt = eateStatement();
rs = stmt。
executeQuery(a);
}
catch (SQLException en)
{
intln(en);
}
finally
{
try
{
if(con!=null)
ose();

}
接下来同上
其佘留给你自己搞搞

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2421.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900