您好 我正在使用这段代码 http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ 并且它工作正常,除了我在这行上得到一个java.io.filenotfoundexception
OutputStream myOutput = new FileOutputStream(outFileName);
我也尝试了这个
OutputStream myOutput = this.context.openFileOutput(outFileName, Context.MODE_PRIVATE);
我得到了
java.lang.IllegalArgumentException异常: 文件 /data/data/com.kosherapp/databases/applicationdata 包含路径分隔符
任何人对我都有任何想法? 提前谢谢!
答案 0 :(得分:1)
此example在较新版本中使用 SQLiteAssetHelper ,主类具有变量ASSET_DB_PATH:
public class SQLiteAssetHelper extends SQLiteOpenHelper {
private static final String ASSET_DB_PATH = "databases";
所以你不需要在你的班级中指定从SQLiteAssetHelper
扩展到数据库的路径,包括目录
// private static final String DATABASE_NAME = "databases/myadtabase.db";
private static final String DATABASE_NAME = "mydatabase.db";
所以不要:
"databases/databases/mydatabase.db"
你将拥有正确的道路:
"databases/mydatabase.db"
这就是你有这个错误的原因:
java.lang.IllegalArgumentException:File ............包含一个路径 分离器
答案 1 :(得分:0)
DatabaseHelper myDbHelper = new DatabaseHelper(this);
try {
myDbHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to create database");
}
myDbHelper.close();
public class DatabaseHelper extends SQLiteOpenHelper {
public static final String TAG = "DatabaseHelper";
private static String DB_PATH = "/data/data/com.test/databases/";
private static String DB_NAME = "testdb.sqlite";
public static final int DB_Version = 1;
private final Context myContext;
private static SQLiteDatabase myDB;
DatabaseHelper(Context context) {
super(context, DB_NAME, null, DB_Version);
this.myContext = context;
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
onCreate(db);
}
public void createDataBase() throws IOException {
boolean dbExist = checkDataBase();
if (dbExist) {
// do nothing - database already exist
} else {
// By calling this method and empty database will be created
// into the default system path
// of your application so we are gonna be able to overwrite that
// database with our database.
this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}
private boolean checkDataBase() {
SQLiteDatabase checkDB = null;
try {
String myPath = DB_PATH + DB_NAME;
checkDB = SQLiteDatabase.openDatabase(myPath, null,
SQLiteDatabase.OPEN_READWRITE);
} catch (SQLiteException e) {
// database does't exist yet.
}
if (checkDB != null) {
checkDB.close();
}
return checkDB != null ? true : false;
}
private void copyDataBase() throws IOException {
// Open your local db as the input stream
InputStream myInput = myContext.getAssets().open(DB_NAME);
// Path to the just created empty db
String outFileName = DB_PATH + DB_NAME;
// Open the empty db as the output stream
OutputStream myOutput = new FileOutputStream(outFileName);
// transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer)) > 0) {
myOutput.write(buffer, 0, length);
}
// Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
}
public SQLiteDatabase openDataBase() throws SQLException {
// Open the database
String myPath = DB_PATH + DB_NAME;
return myDB = SQLiteDatabase.openDatabase(myPath, null,
SQLiteDatabase.OPEN_READWRITE);
}
@Override
public synchronized void close() {
if (myDB != null)
myDB.close();
super.close();
}
}
答案 2 :(得分:0)
我对从该链接找到的代码做了一些修改。 请参阅此链接的答案。你可能会得到答案。 Database not copying from assets
答案 3 :(得分:0)
根据docs,您提供给openFileOutput
的名称不能包含路径分隔符。它必须只是一个文件名(这是为了防止您尝试在应用程序的沙箱外写入)。查看您的错误消息:
java.lang.IllegalArgumentException异常: 文件 /data/data/com.kosherapp/databases/applicationdata 包含路径分隔符
尝试单独使用“applicationdata.db”作为文件名。
答案 4 :(得分:0)
Android 1.6并不需要您指定URL,只需提供数据库名称即可。 :)