android java服务端_Android/Java从服务器端下载图片

/** * 思想: 1.直接将所有数据安装字节数组发送 2.对象序列化方式 *//** * thread方式 * * @author Administrator */public class TestSocketActivity4 extends Activity { private static final int FINISH = 0; private Button send = null; private TextView info = null; private Handler myHandler = new Handler() { @Override public void handleMessage(Message msg) { switch (msg.what) { case FINISH: String result = msg.obj.toString(); // 取出数据 if ("true".equals(result)) { TestSocketActivity4.this.info.setText("操作成功!"); } else { TestSocketActivity4.this.info.setText("操作失败!"); } break; } } }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.setContentView(R.layout.activity_test_sokect_activity4); // StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() // .detectDiskReads().detectDiskWrites().detectNetwork() // .penaltyLog().build()); // StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder() // .detectLeakedSqlLiteObjects().detectLeakedClosableObjects() // .penaltyLog().penaltyDeath().build()); this.send = (Button) super.findViewById(R.id.send); this.info = (TextView) super.findViewById(R.id.info); this.send.setOnClickListener(new SendOnClickListener()); } private class SendOnClickListener implements OnClickListener { @Override public void onClick(View v) { try { new Thread(new Runnable() { @Override public void run() { try { //1: Socket client = new Socket("192.168.1.165", 9898); //2: ObjectOutputStream oos = new ObjectOutputStream( client.getOutputStream()); //3: UploadFile myFile = SendOnClickListener.this .getUploadFile(); //4: oos.writeObject(myFile);// 写文件对象 // oos.writeObject(null);// 避免EOFException oos.close(); BufferedReader buf = new BufferedReader( new InputStreamReader(client .getInputStream())); // 读取返回的数据 String str = buf.readLine(); // 读取数据 Message msg = TestSocketActivity4.this.myHandler .obtainMessage(FINISH, str); TestSocketActivity4.this.myHandler.sendMessage(msg); buf.close(); client.close(); } catch (Exception e) { Log.i("UploadFile", e.getMessage()); } } }).start(); } catch (Exception e) { e.printStackTrace(); } } private UploadFile getUploadFile() throws Exception { // 包装了传送数据 UploadFile myFile = new UploadFile(); myFile.setTitle("tangcco安卓之Socket的通信"); // 设置标题 myFile.setMimeType("image/png"); // 图片的类型 File file = new File(Environment.getExternalStorageDirectory() .toString() + File.separator + "Pictures" + File.separator + "b.png"); InputStream input = null; try { input = new FileInputStream(file); // 从文件中读取 ByteArrayOutputStream bos = new ByteArrayOutputStream(); byte data[] = new byte[1024]; int len = 0; while ((len = input.read(data)) != -1) { bos.write(data, 0, len); } myFile.setContentData(bos.toByteArray()); myFile.setContentLength(file.length()); myFile.setExt("png"); } catch (Exception e) { throw e; } finally { input.close(); } return myFile; } }}public class UploadFile implements Serializable {private String title;private byte[] contentData;private String mimeType;private long contentLength;private String ext;public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public byte[] getContentData() {return contentData;}public void setContentData(byte[] contentData) {this.contentData = contentData;}public String getMimeType() {return mimeType;}public void setMimeType(String mimeType) {this.mimeType = mimeType;}public long getContentLength() {return contentLength;}public void setContentLength(long contentLength) {this.contentLength = contentLength;}public String getExt() {return ext;}public void setExt(String ext) {this.ext = ext;}}下边是服务端

public class Main4 {public static void main(String[] args) throws Exception {ServerSocket server = new ServerSocket(9898); // 服务器端端口System.out.println("服务启动........................");boolean flag = true; // 定义标记,可以一直死循环while (flag) { // 通过标记判断循环new Thread(new ServerThreadUtil(server.accept())).start(); // 启动线程}server.close(); // 关闭服务器}}public class ServerThreadUtil implements Runnable {private static final String DIRPATH = "D:" + File.separator + "myfile"+ File.separator; // 目录路径private Socket client = null;private UploadFile upload = null;public ServerThreadUtil(Socket client) {this.client = client;System.out.println("新的客户端连接...");}@Overridepublic void run() {try {ObjectInputStream ois = new ObjectInputStream(client.getInputStream()); // 反序列化this.upload = (UploadFile) ois.readObject(); // 读取对象//UploadFile需要和客户端传递过来的包名类名相同,如果不同则会报异常System.out.println("文件标题:" + this.upload.getTitle());System.out.println("文件类型:" + this.upload.getMimeType());System.out.println("文件大小:" + this.upload.getContentLength());PrintStream out = new PrintStream(this.client.getOutputStream());// BufferedWriterout.print(this.saveFile());//返回响应//BufferedWriter writer = null;//writer.write("");} catch (Exception e) {e.printStackTrace();} finally {try {this.client.close();} catch (IOException e) {e.printStackTrace();}}}private boolean saveFile() throws Exception { // 负责文件内容的保存/** * java.util.UUID.randomUUID(): * UUID.randomUUID().toString()是javaJDK提供的一个自动生成主键的方法。 UUID(Universally * Unique Identifier)全局唯一标识符,是指在一台机器上生成的数字,它保证对在同一时空中的所有机器都是唯一的, * 是由一个十六位的数字组成 * ,表现出来的形式。由以下几部分的组合:当前日期和时间(UUID的第一个部分与时间有关,如果你在生成一个UUID之后, * 过几秒又生成一个UUID, * 则第一个部分不同,其余相同),时钟序列,全局唯一的IEEE机器识别号(如果有网卡,从网卡获得,没有网卡以其他方式获得 * ),UUID的唯一缺陷在于生成的结果串会比较长,字符串长度为36。 * * UUID.randomUUID().toString()是java JDK提供的一个自动生成主键的方法。 UUID(Universally * Unique Identifier)全局唯一标识符, 是指在一台机器上生成的数字,它保证对在同一时空中的所有机器都是唯一的, * 是由一个十六位的数字组成,表现出来的形式 */File file = new File(DIRPATH + UUID.randomUUID() + "."+ this.upload.getExt());if (!file.getParentFile().exists()) {file.getParentFile().mkdir();}OutputStream output = null;try {output = new FileOutputStream(file);output.write(this.upload.getContentData());return true;} catch (Exception e) {throw e;} finally {output.close();}}}public class UploadFile implements Serializable {private String title;private byte[] contentData;private String mimeType;private long contentLength;private String ext;public String getTitle() {return title;}public void setTitle(String title) {this.title = title;}public byte[] getContentData() {return contentData;}public void setContentData(byte[] contentData) {this.contentData = contentData;}public String getMimeType() {return mimeType;}public void setMimeType(String mimeType) {this.mimeType = mimeType;}public long getContentLength() {return contentLength;}public void setContentLength(long contentLength) {this.contentLength = contentLength;}public String getExt() {return ext;}public void setExt(String ext) {this.ext = ext;}}

取消

评论

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值