我是 Java 的初学者,我正在编写一个代码来将 json twitter 数据集输入到 MYSQL 数据库中。我使用文件名“file”作为输入,对其进行解析,并将其写入 SQL 数据库。但是,我不断收到错误消息:
edu.mbhs.twitter.test.main(test.java:42) 的线程“主”java.lang.NullPointerException 中的异常
第 42 行包含:
if (tweet.getLang().equals("en")){
这是我的主要课程代码:
public class test {
public static List <String> list = new ArrayList<String>();
public static void main(String[] args) throws FileNotFoundException, InterruptedException, SQLException {
JSONParser j = new JSONParser(new File("file"));
ArrayList<Tweet> tweets = j.getTweets();
String sql = "insert into twitterdatasets (tweet_created_at, tweet_id, tweet_text, user_id, user_screen_name, user_location, user_followers_count, user_friends_count, user_created_at, user_verified, user_lang, tweet_retweeted_count, tweet_favorite_count, tweet_lang) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
Connection conn = getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
final int batchSize = 1000;
int count = 0;
for (Tweet tweet: tweets){
if (tweet.getLang().equals("en")){
User user = tweet.getUser();
ps.setString(1, tweet.getCreatedAt());
ps.setString(2, tweet.getIdStr());
ps.setString(3, tweet.getText());
ps.setString(4, user.getIdStr());
ps.setString(5, user.getScreenName());
ps.setString(6, user.getLocation());
ps.setInt(7, user.getFollowersCount());
ps.setInt(8, user.getFriendsCount());
ps.setString(9, user.getCreatedAt());
ps.setBoolean(10, user.getVerified());
ps.setString(11, user.getLang());
ps.setInt(12, tweet.getRetweetCount());
ps.setInt(13, tweet.getFavoriteCount());
ps.setString(14, tweet.getLang());
ps.addBatch();
if (++count % batchSize == 0){
ps.executeBatch();
}
}
}
ps.executeBatch();
ps.close();
conn.close();
System.out.println("File has been successfully written to database");
}
private static Connection getConnection() {
Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String db = "dbo";
String driver = "com.mysql.jdbc.Driver";
String user = "root";
String pass = "elvira03";
try {
Class.forName(driver);
con = DriverManager.getConnection(url + db, user, pass);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return con;
}
}