当我运行模拟器时,它完美无错,但是当我按下Login按钮时,我收到错误“java.lang.NullPointerException:尝试调用接口方法”。
这是我的代码:
public class MainActivity extends ActionBarActivity {
Button add;
TextView errorlbl;
EditText name, address, pincode;
Connection connect;
PreparedStatement preparedStatement;
Statement st;
String ipaddress, db, username, password;
@SuppressLint("NewApi")
private Connection ConnectionHelper(String user, String password,
String database, String server) {
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
.permitAll().build();
StrictMode.setThreadPolicy(policy);
Connection connection = null;
String ConnectionURL = null;
try {
Class.forName("net.sourceforge.jtds.jdbc.Driver");
ConnectionURL = "jdbc:jtds:sqlserver://" + server + ";"
+ "databaseName=" + database + ";user=" + user
+ ";password=" + password + ";";
connection = DriverManager.getConnection(ConnectionURL);
} catch (SQLException se) {
Log.e("ERRO", se.getMessage());
} catch (ClassNotFoundException e) {
Log.e("ERRO", e.getMessage());
} catch (Exception e) {
Log.e("ERRO", e.getMessage());
}
return connection;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
add = (Button) findViewById(R.id.btnadd);
errorlbl = (TextView) findViewById(R.id.lblerror);
name = (EditText) findViewById(R.id.txtname);
address = (EditText) findViewById(R.id.txtaddress);
pincode = (EditText) findViewById(R.id.txtpincode);
ipaddress = "92.244.93.250:3306";
db = "lokal";
username = "lokal";
password = "12lokal34";
connect = ConnectionHelper(username, password, db, ipaddress);
add.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
st = connect.createStatement();
preparedStatement = connect
.prepareStatement("insert into studentRecord(Name,Address,Pincode) values ('"
+ name.getText().toString()
+ "','"
+ address.getText().toString()
+ "','"
+ pincode.getText().toString() + "')");
preparedStatement.executeUpdate();
errorlbl.setText("Data Added successfully");
} catch (SQLException e) {
errorlbl.setText(e.getMessage().toString());
}
}
});
}
}
Logcat错误说:
2182-2182 / app.mysqlapp E / AndroidRuntime:致命异常:主要 过程:app.mysqlapp,PID:2182 java.lang.NullPointerException:尝试在空对象引用上调用接口方法'java.sql.Statement java.sql.Connection.createStatement()'
答案 0 :(得分:1)
您的ConnectionHelper
方法会捕获异常,而在出现问题时会返回null
。因此,在调用它时,由于您已选择退出结构化异常处理,因此必须允许null
返回值。您没有这样做,您只是使用ConnectionHelper
的返回值,而不先检查它是null
。
显然,ConnectionHelper
中发生了错误,您正在捕获并转储到日志中。这样就可以告诉你出了什么问题。
附注:Java中的压倒性约定不以大写方法的第一个字母。
附注2:允许ConnectionHelper
中的例外传播到您的顶级入口点并在那里处理它们更好的做法。
答案 1 :(得分:1)
很明显,你的连接对象是null,这意味着ConnectionHelper()返回null ..这进一步意味着下面的行返回null
connection = DriverManager.getConnection(ConnectionURL);
现在只有当驱动程序名称错误或ConnectionURL错误时才会发生这种情况。由于驱动程序名称似乎正确,唯一的错误位置是您的连接url字符串。我刚刚在SO上检查了这个类似的答案here。
对我看来,Connetion URl字符串应该是
ConnectionURL = "jdbc:jtds:sqlserver://" + server + ";"
+ "database=" + database + ";user=" + user
+ ";password=" + password + ";";
请注意连接字符串中database
和databaseName
变量的区别。这应该有用。
更新 @ T.J中提到的所有要点。克劳德的答案是正确的,你应养成遵循标准惯例的习惯。
答案 2 :(得分:0)
从您的代码中可以清楚地看出,您的 ConnectionHelper 中有一些错误,它会返回null
注意:我的猜测只是
你已经使用了net.sourceforge.jtds.jdbc.Driver和那些用于MsSql服务器而你已经将3306作为db服务器的端口,大多数3306用于MySql,所以你确定你已经配置了你的MsSql在3306