在 Android 上保护 XML

发布于 2024-12-29 10:33:19 字数 482 浏览 2 评论 0原文

我正在制作内部应用程序,通过 xml 文件从外部服务器下载数据。该服务器在我的控制之下,但我不希望它提供的 XML 文件可供除 android 应用程序之外的任何人使用。

我现在使用经典代码来获取 XML,如下所示:

XMLhandler parser = new XMLhandler();
String xml = parser.getXmlFromUrl(URL); // getting XML
Document doc = parser.getDomElement(xml); // getting DOM element
.
.
.

What would be the best way to Implement security, very simple will do。 XML 中的信息不是那么敏感,只是我不希望它们对整个网络可用。

对服务器进行某种身份验证,或者是否可以使用密码将其压缩并在应用程序内打开?我只是在这里猜测...

I'm making in house application that download data via xml files from external server. This server is under my control but I don't want the XML file that it present to be available to anyone but the android app.

I use for now classic code to get XML like this:

XMLhandler parser = new XMLhandler();
String xml = parser.getXmlFromUrl(URL); // getting XML
Document doc = parser.getDomElement(xml); // getting DOM element
.
.
.

What would be the best way to implement security, very simple would do. The information in XML is not that sensitive, just I wont them not to be available to whole net.

Some kind of authentication to the server or would it be possible to zip it with password and open inside the app ? I'm just guessing here...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭了丶谁疼 2025-01-05 10:33:19

这个问题有很多解决方案。其中一些是

  1. 在服务器上使用身份验证,这需要密码才能下载 xml 文件。
  2. 使用服务器上的一些密钥加密 xml 文件,并将它们保留在 Android 应用程序上。
  3. 你说的是哪一个,用密码压缩xml文件。

There are many solutions to this problem. Some of them are

  1. Use authentication on the server, which requires password for download the xml file.
  2. Encrypt the xml file with some secret key on server, and reserve them on android app.
  3. Which one you said, zip the xml file with password.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文