使用 root 以编程方式擦除 Android 浏览器缓存、历史记录等
我有一台已锁定的 Android 平板电脑(用户只能使用标准版 Android 浏览器),因此所有临时互联网内容都应位于同一个位置。
假设我很快就能root设备
,我希望能够清除(1)cookie,(2)临时互联网文件,(3)历史记录,(4)表单数据,(5) 位置访问信息,(6) 密码,(7) 缓存。
我想我可以通过删除来消除其中的大部分:
/data/data/com.android.browser/cache
cookies 似乎在数据库中。我不确定是否可以删除它
/data/data/com.android.browser/databases/webview.db
然后我想我可以删除这些文件来擦除
位置信息:
/data/data/com.google.android.location/files/wifi
/data/data/com.google.android.location/files/cell
这样就可以解决所有问题吗?
我遗漏了什么?
仅删除该数据库
安全吗?有谁知道吗?
I have an android tablet that is locked down (users will only be able to use standard issue android browser), so all the temporary internet stuff should be in the same place.
Assuming I am able to root the device
sometime here soon, I would like to be able to wipe out (1) cookies,(2) temp internet files,(3) history,(4) form data,(5) location access info,(6) passwords, (7) cache.
I think I can knock out most of these by erasing:
/data/data/com.android.browser/cache
The cookies appear to be in a database. I'm not sure if I can just delete it
/data/data/com.android.browser/databases/webview.db
And then I think I can just delete these files to erase
location information:
/data/data/com.google.android.location/files/wifi
/data/data/com.google.android.location/files/cell
Will that take care of everything?
What am I leaving out?
Is it safe to just erase that database
? Does anyone know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的事情怎么样?
像从命令行一样
how about something as simple as
from command line ?
此 API 在 Android Marshmallow 中已弃用。如果您使用 API 23 构建,它将不再起作用。
你可以删除它们@micahhoover,
您可以删除完整的 com.android.browser 子目录,每次重新启动浏览器时,都会创建所有子文件夹。
要删除 Activity.java 文件中的 Android 浏览器历史记录(默认),
添加以下代码
请在清单中
This API is deprecated in Android Marshmallow. If you build using API 23 it wont work any more.
You can delete them @micahhoover,
You can delete complete com.android.browser sub directories, every time you relaunch browser, all the sub folders gets created.
To delete android browser History(Default)
in your Activity.java file add the follwing code
In your manifest add