我的项目有问题 这是我的pTwitterEx.java
import java.util.logging.Level;
import java.util.logging.Logger;
import org.json.JSONException;
import org.json.JSONObject;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
* @author tasgnab
* how to use:
* 1. copy-paste folder tempat menyimpan hasil crawl per topik pada variabel dir
* 2. masukkan topik sabagai label di databae pada variabel topik
* 3. run file
*/
public class pTwitterEx {
private static Database db = new Database();
private static String dir = "D:\\KULIAH\\semester7\\TA2\\java\\dataset\\baik";
private static String topik = "baik";
private static int count=0;
public static void main(String[]args){
db.query("truncate twitter");
String temp="a";
while (!"iniadalahpenanda".equals(temp)){
FileRead fr = new FileRead(dir+count);
try {
JSONObject J = new JSONObject(fr.getTeks());
String C = J.get("text");
db.query("insert into twitter values '"+C+"','"+topik+"'");
} catch (JSONException ex) {
temp = "iniadalahpenanda";
//System.exit(0);
//Logger.getLogger(pTwitterEx.class.getName()).log(Level.SEVERE, null, ex);
}
count++;
}
//db.query("insert into twitterfix select distinct comment,'"+topik+"' from twitter");
}
}
我的问题是,来自文件夹" baik"的数据到mysql的数据库。我的数据库中的字段名称是text(type:text)和topik(type:varchar)。
当我运行程序时,它显示没有错误,但我的数据库中的数据仍然是空的。 你能帮我解决我的问题吗?任何帮助都会感激... 非常感谢....
答案 0 :(得分:0)
要在数据库中完成表达式(至少在MySQL中),请添加“;”在一条线的尽头。
抱歉,请更改此行:
db.query("insert into twitter values '"+C+"','"+topik+"'");
到这一行:
db.query("insert into twitter values '"+C+"','"+topik+"';");
答案 1 :(得分:0)
您的查询应类似于:观察大括号(
和)
示例:
db.query("insert into twitter values( '"+C+"','"+topik+"')");