在 Android 上保护 XML
我正在制作内部应用程序,通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题有很多解决方案。其中一些是
There are many solutions to this problem. Some of them are