Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应用程序,它使用 android webview 存储在 assets 文件夹中的本地 html 文件。我想知道是否可以在不更新应用程序的情况下更新本地 html 文件
你必须采取一些不同的方法来做到这一点。如果您将 html 文件保存在资产文件夹中,则无法对其进行更新。我所做的是将 html 文件放在数据库文件夹中,您可以在其中以编程方式对其进行更新。
步骤 1.在构建应用程序时不能放置文件,您可以在应用程序启动时以 zip 格式下载 html 文件并将其解压缩到数据库文件夹中。
步骤 2.要更新文件,只需从服务器下载更新 zip 文件并替换为与步骤 1 相同的现有文件。
希望这可以帮助。我为我的项目做了同样的事情,它就像一个魅力。