我尝试解析我的DatabaseHandler类中的文件,但Eclipse说:
对于DatabaseHandler类型,未定义getAssets()方法
这是代码:
public class DatabaseHandler extends SQLiteOpenHelper {
private static final int DATABASE_VERSION = 15;
public DatabaseHandler(Context context) {
super(context, "rettinfo", null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
Log.d("Create: ", "Creating antidotlist");
String CREATE_ANTIDOT_TABLE = "CREATE TABLE antidots (id INTEGER PRIMARY KEY antidot TEXT, dos TEXT)";
Log.d("Create: ", CREATE_ANTIDOT_TABLE);
db.execSQL(CREATE_ANTIDOT_TABLE);
InputStream antidots = getAssets().open("antidot/antidots");
InputStreamReader input = new InputStreamReader(antidots);
BufferedReader buffreader = new BufferedReader(input,2*1024);
String line;
while ((line = buffreader.readLine()) != null) {
String[] point_t = line.split(",");
}
antidots.close();
}
}
Run Code Online (Sandbox Code Playgroud)
蒂姆的更新
这就是eclipse不会出错的原因
int i = 0;
InputStream antidots;
try {
antidots = mCtx.getAssets().open("antidot/antidots");
InputStreamReader input = new InputStreamReader(antidots);
BufferedReader buffreader = new BufferedReader(input,2*1024);
String line;
while ((line = buffreader.readLine()) != null) {
i++;
ContentValues values = new ContentValues();
String[] antidot = line.split("#");
int id = Integer.parseInt(antidot[0]);
values.put("id", id);
values.put("antidot", antidot[1]);
values.put("dos", antidot[2]);
db.insert("antidots", null, values);
}
antidots.close();
} catch (IOException e) {
e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)
Foa*_*Guy 19
存储对Context从构造函数获得的引用,然后在该引用上调用getAssets().
public class DatabaseHandler extends SQLiteOpenHelper {
private static final int DATABASE_VERSION = 15;
private Context mCtx; //<-- declare a Context reference
public DatabaseHandler(Context context) {
super(context, "rettinfo", null, DATABASE_VERSION);
mCtx = context; //<-- fill it with the Context you are passed
}
@Override
public void onCreate(SQLiteDatabase db) {
Log.d("Create: ", "Creating antidotlist");
String CREATE_ANTIDOT_TABLE = "CREATE TABLE antidots (id INTEGER PRIMARY KEY antidot TEXT, dos TEXT)";
Log.d("Create: ", CREATE_ANTIDOT_TABLE);
db.execSQL(CREATE_ANTIDOT_TABLE);
InputStream antidots = mCtx.getAssets().open("antidot/antidots"); //<-- call getAssets on your Context object.
InputStreamReader input = new InputStreamReader(antidots);
BufferedReader buffreader = new BufferedReader(input,2*1024);
String line;
while ((line = buffreader.readLine()) != null) {
String[] point_t = line.split(",");
}
antidots.close();
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
21574 次 |
| 最近记录: |