我的任务是在一天的特定时间自动从SD卡恢复 function get_client_search($search_data)
{
$this->db->select('client_id,client_name');
$this->db->like('client_name', $search_data);
return $this->db->get('ms_client', 10);
}
个应用。
我已使用SQLite Database
事件恢复了应用数据库。但我不知道如何在没有任何点击事件的情况下自动恢复数据库。我希望在特定时间自动穿戴任务。我在这里提供了我的手动代码。请帮帮我。
Button Click
我使用 private void importDB() {
try {
File sd = Environment.getExternalStorageDirectory();
File data = Environment.getDataDirectory();
File myDir=new File(Environment.getExternalStorageDirectory(),"ST_Manager");
myDir.mkdir();
if (sd.canWrite()) {
String currentDBPath = "//data//com.realtech.st_manager_v11//databases//unitdb";
String backupDBPath = "//ST_Manager//unitdb.db";
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
FileChannel src = new FileInputStream(backupDB).getChannel();
FileChannel dst = new FileOutputStream(currentDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
Toast.makeText(getApplicationContext(), "Database Restored successfully", Toast.LENGTH_SHORT).show();
}
}catch (Exception e){
e.printStackTrace();
Toast.makeText(getApplicationContext(), "Restoration Failed", Toast.LENGTH_SHORT).show();
}
}
事件完成了此操作。请帮我解决自动恢复问题。感谢。