hola alguin me prodria ayudar estoy haciendo un proyecto en el cual tengo que insertar datos a una bd remota, lo que estoy haciendo es pasar los parametros a una jsp y ella q los ingrese en la bd, el problema esq siempre me llegan nulos, soy nuevo en esto de android por lo cual noc q estoy haciendo mal, alguien quien me pueda ayudar!!!!!!!
Codigo Android
Código Java:
Ver originalpublic void send
(View view
){
String url
="http://127.0.0.1:8080/JspBd/index.jsp";
// String user = edtxt1.getText().toString();
// String pass = edtxt2.getText().toString();
try
{
System.
out.
println("------ esta llegando a envio de datos por metodo post ---------"); HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
List<NameValuePair> pairs = new ArrayList<NameValuePair>();
pairs.add(new BasicNameValuePair("UserName", "aldo"));
pairs.add(new BasicNameValuePair("PassworD", "Zuñiga"));
post.setEntity(new UrlEncodedFormEntity(pairs));
HttpResponse response = client.execute(post);
}
{
e.printStackTrace();
}
}
y Codigo JSP
Código HTML:
Ver original<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.io.*" %>
<!DOCTYPE html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<%
String uName = request.getParameter("UserName");
String password = request.getParameter("PassworD");
%>
<%=uName != null ? "\n" + uName : "\nNo Username available"%>
<%=password != null ? "\n" + password : "\nNo Password Available"%>
<%
if (uName != null && password != null) {
try {
FileWriter fw = new FileWriter("D:\\data.txt");
BufferedWriter bw = new BufferedWriter(fw);
bw.write(uName);
bw.write(password);
bw.close();
} catch (Exception e) {
e.printStackTrace();
}
}
%>