【发布时间】:2014-07-15 14:10:05
【问题描述】:
我在一堂课中使用了上下文。在另一个类中启动它时如何引用相同的上下文?
MyHttpClient.java
public class MyHttpClient extends DefaultHttpClient {
final Context contextkey;
public MyHttpClient(Context contextkeystore) {
this.contextkey = contextkeystore;
}
@Override
protected ClientConnectionManager createClientConnectionManager() {
SchemeRegistry registry = new SchemeRegistry();
registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
// Register for port 443 our SSLSocketFactory with our keystore
// to the ConnectionManager
registry.register(new Scheme("https", newSslSocketFactory(), 443));
return new SingleClientConnManager(getParams(), registry);
}
private SSLSocketFactory newSslSocketFactory() {
try {
// Get an instance of the Bouncy Castle KeyStore format
KeyStore trusted = KeyStore.getInstance("BKS");
// Get the raw resource, which contains the keystore with
// your trusted certificates (root and any intermediate certs)
InputStream in = contextkey.getResources().openRawResource(R.raw.mykeystore);
try {
// Initialize the keystore with the provided trusted certificates
// Also provide the password of the keystore
trusted.load(in, "mysecret".toCharArray());
} finally {
in.close();
}
// Pass the keystore to the SSLSocketFactory. The factory is responsible
// for the verification of the server certificate.
SSLSocketFactory sf = new SSLSocketFactory(trusted);
// Hostname verification from certificate
// http://hc.apache.org/httpcomponents-client-ga/tutorial/html/connmgmt.html#d4e506
sf.setHostnameVerifier(SSLSocketFactory.STRICT_HOSTNAME_VERIFIER);
return sf;
} catch (Exception e) {
throw new AssertionError(e);
}
}
}
在另一个类中使用:
DefaultHttpClient client = new MyHttpClient(getApplicationContext()); ??
这里“getApplicationContext”不起作用并显示错误
【问题讨论】:
-
你从哪里调用 getApplicationContext()?你能发布在 getApplicationContext() 上抛出的错误吗?
-
我在“DefaultHttpClient client = new MyHttpClient(getApplicationContext());”中的另一个类中调用它
-
这个类是否扩展了Activity?你能把错误日志贴在 getApplicationContext() 上吗?
-
不,这个类不是活动类。没有错误,但它显示红色下划线并要求我创建方法“getApplicationContext()”
标签: java android class android-context