<table style="font-family: Georgia, 'Times New Roman', Times, serif; width: 100%;" border="0" cellspacing="0" cellpadding="0" align="center"> <tbody> <tr> <td style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px;" width="100%"> <table> <tbody> <tr> <td style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px;"><form style="font-size: 11px; margin-bottom: 0px;" action="http://www.prettyprinter.de/module.php?name=PrettyPrinter" method="post"> <div style="font-size: 11px;" align="left"><code><span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px; color: #000000;">public static void Update() throws Exception {<br /> HttpClient httpclient = new DefaultHttpClient();<br /> httpclient.getParams().setParameter(<br /> CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);<br /> <br /> HttpPost httppost = new HttpPost("http://mpss.csce.uark.edu/tsumar/test/upload_file.php");<br /> File file = new File("image.jpg");<br /> <br /> MultipartEntity mpEntity = new MultipartEntity();<br /> ContentBody cbFile = new FileBody(file, "image/jpeg");<br /> mpEntity.addPart("file", cbFile);<br /> <br /> httppost.setEntity(mpEntity);<br /> System.out.println("executing request " + httppost.getRequestLine());<br /> HttpResponse response = httpclient.execute(httppost);<br /> HttpEntity resEntity = response.getEntity();<br /> <br /> System.out.println(response.getStatusLine());<br /> if (resEntity != null) {<br /> System.out.println(EntityUtils.toString(resEntity));<br /> }<br /> if (resEntity != null) {<br /> resEntity.consumeContent();<br /> }<br /> <br /> httpclient.getConnectionManager().shutdown();<br />}<br /></span></code></div> </form></td> </tr> </tbody> </table> </td> <td style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px; background-image: url('http://www.prettyprinter.de/kleider/blue-sand/images/main_right.gif'); background-repeat: no-repeat repeat;" width="10"> </td> </tr> <tr> <td style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px; background-image: url('http://www.prettyprinter.de/kleider/blue-sand/images/main_left.gif'); background-repeat: no-repeat repeat;" width="10"> </td> <td style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 11px; background-image: url('http://www.prettyprinter.de/kleider/blue-sand/images/main_middle.gif');" width="100%"> </td> </tr> </tbody> </table>