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.
我一直在编写一个非常依赖于将字符串从 PHP 传递到 android 的程序;我使用 entityutils.toString 将该信息传递给我的应用程序。
但是,我现在需要将一个布尔值从 PHP 传递给 android。显然 entityutils.toString 工具不会有任何好处。在我的在线搜索中,我很难确定正确的方法。
你们中的任何人都可以指出我正确的方向吗?
使用诸如 JSON 之类的编码来区分整数和布尔值。
将布尔值更改为真/假,将 int 更改为常规 int。1 (true) 与 1 整数相同。您还可以在开头附加字母 b 或 i 吗?