上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 41 下一页
摘要: package com.ahgw.common.global;import java.util.regex.Pattern;/** * 截取HTML代码 * * @author YangJunping * @date 2010-7-15 */public class Html2Text { public static void main(String[] args) {// StringBuffer htmlStr = new StringBuffer();// htmlStr.append("")// .append("aaa"... 阅读全文
posted @ 2013-11-18 18:04 无忧之路 阅读(2645) 评论(0) 推荐(0) 编辑
摘要: public void upload(View view) { AsyncHttpClient client = new AsyncHttpClient(); RequestParams requestParams = new RequestParams(); File file = new File("/sdcard/NTUSER.DAT.LOG"); try { requestParams.put("file", file); } catch (FileNotFoundException e) { ... 阅读全文
posted @ 2013-11-17 16:46 无忧之路 阅读(1623) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.fileupload.FileItem;import org.apache.commons.fileupload.FileUploadException;import org.apache.commons.fileupload.disk.DiskFileItemFactory;import org.apache.commons.fileupload.servlet.ServletFileUpload;import javax.servlet.ServletConfig;import javax.servlet.ServletContext;i 阅读全文
posted @ 2013-11-17 16:25 无忧之路 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 使用时无需将这些代码放入子线程去执行,因为其内部已经封装到一个线程中运行了!public void asyncHttpClientGet(View view) { AsyncHttpClient client = new AsyncHttpClient(); client.get( "http://10.0.2.2:8080/LoginServlet?username=张三&password=123", new AsyncHttpResponseHandler() { ... 阅读全文
posted @ 2013-11-17 15:35 无忧之路 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 1、将jar包放入Module里的lib文件夹中。(自己创建lib文件夹) 2、在project选中jar包点击右键"Add as library"。 3、此时项目仍然是无法正常编译的,这时需要在项目里的module的build.gradle文件里的dependencies节加入以下内容 compile files('lib/xxxx.jar') 这里files括号里面的地址是相对于build.gradle文件的相对路径4、此时项目正常编译并运行了,但当你的代码中真正创建了引用jar里的类实例时,有可能系统会抛出异常NoClassDefFoundError, 阅读全文
posted @ 2013-11-17 13:27 无忧之路 阅读(3294) 评论(0) 推荐(0) 编辑
摘要: final String username = usernameEditText.getText().toString().trim(); final String password = passwrodEditText.getText().toString().trim(); //Android默认模拟器外部的地址为10.0.2.2,而不是localhost和127.0.0.1 final String serverPath = "http://10.0.2.2:8080/LoginServlet"; if (TextUtils.isE... 阅读全文
posted @ 2013-11-17 11:27 无忧之路 阅读(606) 评论(0) 推荐(0) 编辑
摘要: public void httpClientGet(View view) { final String username = usernameEditText.getText().toString().trim(); final String password = passwrodEditText.getText().toString().trim(); //Android默认模拟器外部的地址为10.0.2.2,而不是localhost和127.0.0.1 final String serverPath = "http://10.0.2.... 阅读全文
posted @ 2013-11-17 10:59 无忧之路 阅读(342) 评论(0) 推荐(0) 编辑
摘要: package com.wuyou.submittoserver;import android.os.Bundle;import android.support.v7.app.ActionBarActivity;import android.text.TextUtils;import android.view.View;import android.widget.EditText;import android.widget.Toast;import java.io.BufferedReader;import java.io.ByteArrayOutputStream;import java.i 阅读全文
posted @ 2013-11-17 10:40 无忧之路 阅读(1116) 评论(0) 推荐(0) 编辑
摘要: Android通过GET和POST方法请求服务器和浏览器请求的过程是不一样的。浏览器请求服务器的时候会先将中文进行UTF-8编码,然后再发送到服务器端。Android编程下我们需要通过URLEncoding.encode(string, "UTF-8")方法将中文转编码,只有通过这一步,Android模拟HTTP协议的数据发送才跟浏览器HTTP的发送过程相同。另外,Android环境下的默认编码是UTF-8。 阅读全文
posted @ 2013-11-16 20:29 无忧之路 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 如果我们用浏览器填写了中文,而在服务器Servlet上没有进行编码设置,那么将会出现乱码。出现乱码的原因是:浏览器发送的文字是以UTF-8编码发送的,然后调用request.getParameter()方法,这个方法使用的是ISO8859-1编码,因此你System.out.println的时候就会出现乱码问题。那么如何解决呢?我们可以有3个方法解决:①将服务器用ISO编码的的文字用该编码还原,然后再生成UTF-8的字符串,这样才会得到正确的文字。 String username = request.getParameter("username"); username = 阅读全文
posted @ 2013-11-16 19:41 无忧之路 阅读(358) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 41 下一页
无忧之路