How can I send a picture in Java ME ? Maybe using base64 decode
and the send in post form via http
request
相关问题
- Views base64 encoded blob in HTML with PHP
- How to get the background from multiple images by
- CV2 Image Error: error: (-215:Assertion failed) !s
- Replace image attributes for lazyload plugin on im
- How to display an image represented by three matri
相关文章
- Use savefig in Python with string and iterative in
- Where does this quality loss on Images come from?
- Specifying image dimensions in HTML vs CSS for pag
- How to insert pictures into each individual bar in
- How do I append metadata to an image in Matlab?
- Img url to dataurl using JavaScript
- Click an image, get coordinates
- C# Saving huge images
I think you looking for this image base64 encoding in J2me
There are plenty of coders in Base64 for Java. Apache commons has one, here is a standalone one.
Have you considered using a "multipart/form-data" encoding type? If you so, then there is no need for Base64 encoding. See here and here for instructions on how to build the request.
If you still want to do the Base64 encoding, then you will be able to easily find many source implementations on the Web. If you are developing both the server and client side, you could use your own implementation on both ends.
Yes , I'm use that to send the base64 ,putting in
where data = String with a base64 image , the problem is that i don't have a base64 library that works in java and asp in the same way.