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.
我有一个对象学生,其中包含:
int studentId; String name; byte[] picture;
我想把它发送到服务器。 我尝试通过 json 发送它,但对象太大,无法转换为 json byte[] picture;。
byte[] picture;
是否可以在对象中发送图像或者必须单独发送?
谢谢 :)
尝试使用 Base64 图像将其拆分为更小的子字符串。然后你可以转换成json。