关于能不能用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();
}
接下来同上
其佘留给你自己搞搞
。