que trato de analizar un archivo en mi clase DatabaseHandler pero Eclipse dicen:Uso getAssets fuera una actividad
Los getAssets método() está definido para el DatabaseHandler tipo
Este es el código:
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();
}
}
actualización para Tim
Esta es la forma en Eclipse no hacen ningún error
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();
}
sí, el try catch es normal. Cada vez que trabaje con un archivo io hará que ajuste el código en try/catch. Hace esto porque hay muchas formas comunes en que las operaciones de E/S de archivos pueden fallar. Y sin el try/catch, su programa simplemente se bloqueará en caso de que haya un problema con el i/o – FoamyGuy
También tenga en cuenta que el archivo i/o try catch se debe a una convención java, y no es específico de eclipse. – FoamyGuy