netbeans中单个文件调试时如何加参数
1个回答
展开全部
首先打开项目的属性,即右键项目选择最底下的项目属性. 然后在生成节点下选择运行选项,然后在
右边的选项里选择你要调试的主类(即含有main()函数的类),具体看截图:
设置好后运行项目,记住运行的是项目而不是单个文件, NetBeans 运行项目的时候是根据你提供的
主类来运行的,相当于运行了单个文件 .^_^
下面是测试代码:
我用的是JDBC 进行测试. 我把让密码从命令行里得到.用的是MySQL的数据库,大家可以根据自己的
需要来改. 我把密码root 写到了命令行里.
package gml.JDBC;
import java.sql. * ;
public class TestSQL {
public static void main(String[] args) {
Connection cnn = null ;
Statement stmt = null ;
ResultSet rs = null ;
try {
Class.forName( " com.mysql.jdbc.Driver " );
cnn = DriverManager.getConnection( " jdbc:mysql://localhost:3306/bbs " , " root " , args[ 0 ]);
stmt = cnn.createStatement();
rs = stmt.executeQuery( " select * from users " );
System.out.println( " ID Name " );
while (rs.next()) {
System.out.print(rs.getString( " user_ID " ) + " \t " );
System.out.println(rs.getString( " user_Name " ));
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally {
try {
if (rs != null ) {
rs.close();
rs = null ;
}
if (stmt != null ) {
stmt.close();
stmt = null ;
}
if (cnn != null ) {
cnn.close();
cnn = null ;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
右边的选项里选择你要调试的主类(即含有main()函数的类),具体看截图:
设置好后运行项目,记住运行的是项目而不是单个文件, NetBeans 运行项目的时候是根据你提供的
主类来运行的,相当于运行了单个文件 .^_^
下面是测试代码:
我用的是JDBC 进行测试. 我把让密码从命令行里得到.用的是MySQL的数据库,大家可以根据自己的
需要来改. 我把密码root 写到了命令行里.
package gml.JDBC;
import java.sql. * ;
public class TestSQL {
public static void main(String[] args) {
Connection cnn = null ;
Statement stmt = null ;
ResultSet rs = null ;
try {
Class.forName( " com.mysql.jdbc.Driver " );
cnn = DriverManager.getConnection( " jdbc:mysql://localhost:3306/bbs " , " root " , args[ 0 ]);
stmt = cnn.createStatement();
rs = stmt.executeQuery( " select * from users " );
System.out.println( " ID Name " );
while (rs.next()) {
System.out.print(rs.getString( " user_ID " ) + " \t " );
System.out.println(rs.getString( " user_Name " ));
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally {
try {
if (rs != null ) {
rs.close();
rs = null ;
}
if (stmt != null ) {
stmt.close();
stmt = null ;
}
if (cnn != null ) {
cnn.close();
cnn = null ;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询