Mysql->PHP->Java - 如何避免丢失字符串中的信息?
我正在尝试制作一个 Android 应用程序,并且我正在使用来自 mysql 的一些基于用户的输入。我用php输出,用java加载。
可能会有很多结果。
目前我的输出可能是。
入侵检测系统:1,4,7,3,9 MSG ffsdf,sdfs,dfsd,fsdfsdf,sdfsfd
但是,如果人们在文本中写入 、
或其他内容,我的代码将失败。
有什么想法我可以做什么吗?
I am trying to make an android app, and I am using some userbased input from mysql. I output it with php and load it with java.
There can be plenty of results.
At the moment my output could be.
IDS: 1,4,7,3,9
MSG ffsdf,sdfs,dfsd,fsdfsdf,sdfsfd
But if people write a ,
or or something in their text my code will fail.
Any ideas what I can do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会使用这种方法(分隔符)。为什么不为每个项目创建单独的变量(在android中通过XML很容易做到)。这样您就可以更好地控制,无需解析任何内容,并且可以轻松添加验证!
I wouldn't use this approach (delimiters). why don't you create separate variable for each item (easy to do via XML in android). This way you have a better control, there's no need to parse anything and you can easily add validations!