我尝试将htmlpage作为string存储在db中。然后我需要显示它 webview中的页面。在这里我粘贴我的代码请帮我....... 你如何在Android的sqlite数据库中存储一个html页面?我试过了 将html页面转换为bytes数组以存储在数据库中。请 帮助我如何将插入存储到db中,然后打开该负载 网页视图...
public class AndroidOpenDbHelper extends SQLiteOpenHelper {
public static final String DB_NAME = "html_db";
public static final int DB_VERSION = 1;
public static final String TABLE_NAME = "html_table";
public static final String COLUMN_NAME_ID = "html_id_column";
public static final String COLUMN_NAME_PAGE = "page_column";
public AndroidOpenDbHelper(Context context) {
super(context, DB_NAME, null, DB_VERSION);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
//"create table if not exists TABLE_NAME ( BaseColumns._ID integer primary key autoincrement, FIRST_COLUMN_NAME text not null, SECOND_COLUMN_NAME integer not null);"
String sqlQueryToCreateTable = "create table if not exists " + TABLE_NAME + " ( " + BaseColumns._ID + " integer primary key autoincrement, "
+ COLUMN_NAME_PAGE + " HTML STRING, "
;
// Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.
db.execSQL(sqlQueryToCreateTable);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
if(oldVersion == 1 && newVersion == 2){
// Upgrade the database
}
}
}
这是我显示页面的代码。
public class MainActivity extends Activity {
WebView browser;
private static String inp;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
browser=(WebView)findViewById(R.id.w1);
}
private void loadTime(SQLiteDatabase db) {
// TODO Auto-generated method stub
browser.getSettings().setJavaScriptEnabled(true);
browser.loadDataWithBaseURL("x-data://base",inp,"text/html", "UTF-8",null);
// browser.loadUrl(inp);
}
public static String main(String args[]) throws FileNotFoundException {
FileInputStream fis = new FileInputStream("D:/mo.html");
inp = new Scanner(fis,"UTF-8").useDelimiter("\\A").next();
return inp;
}
public void insertUndergraduate(){
AndroidOpenDbHelper androidOpenDbHelperObj = new AndroidOpenDbHelper(this);
SQLiteDatabase sqliteDatabase = androidOpenDbHelperObj.getWritableDatabase();
ContentValues contentValues = new ContentValues();
contentValues.put(AndroidOpenDbHelper.COLUMN_NAME_PAGE,inp);
}
请帮帮我......
答案 0 :(得分:1)
你试过这个例子:
http://mobile.tutsplus.com/tutorials/android/android-sdk-embed-a-webview-with-the-webkit-engine/
看起来不对:
WebView engine = (WebView) findViewById(R.id.web_engine);
String data = "<html>" +
"<body><h1>Yay, Mobiletuts+!</h1></body>" +
"</html>";
engine.loadData(data, "text/html", "UTF-8");
现在,如果可行的话,我只是将html从数据库中的普通文本字段中选择到字符串中。
请告知我这是否有效并且是答案。