Here is my code in this code the value inside the try block i am getting the value of httpconn = null but in the first line i am storing the value into the variable httpconn in the first line why it so. I am getting nullpointerexception... can any body help me ...
public static String requestToken()
{
String url = Const.REQUEST_TOKEN_URL;
String header = oauth_header(url, HttpProtocolConstants.HTTP_METHOD_GET);
String requestTokenUrl = concatURL(url, header);
HttpConnection httpConn = null;
InputStream input = null;
try
{
httpConn = (HttpConnection) Connector.open(requestTokenUrl); // kris connection
httpConn.setRequestMethod(HttpProtocolConstants.HTTP_METHOD_GET);
httpConn.setRequestProperty("WWW-Authenticate","OAuth realm=http://twitter.com/");
httpConn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
input = httpConn.openDataInputStream();
int resp = httpConn.getResponseCode();
if (resp == HttpConnection.HTTP_OK)
{
StringBuffer buffer = new StringBuffer();
int ch;
while ( (ch = input.read()) != -1)
{
buffer.append( (char) ch);
}
String content = buffer.toString();
Const.token = content.substring(content.indexOf((Const.OAUTH_TOKEN+"="))+(Const.OAUTH_TOKEN+"=").length(), content.indexOf('&'));
Const.tokenSecret = content.substring(content.indexOf((Const.OAUTH_TOKEN_SECRET+"="))+(Const.OAUTH_TOKEN_SECRET+"=").length(), content.length());
message = httpConn.getResponseMessage();
}
return message;//(getTwitterMessage(httpConn.getResponseCode()));
}
catch (IOException e)
{
return "exception";
}
catch (Exception nc)
{
return "noConnection";
} finally {
try {
httpConn.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
}
Thanks in advanced
Connector.open()is returningnull? – Oli Charlesworth Apr 28 '11 at 9:37