- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我正在制作一个测试登录应用程序,这样我就可以查看应用程序和服务器如何一起运行。所以我有三个正在使用的端点。这三个都下载了 json 文件,所以我可以毫无问题地打印出来。问题是它们都需要用户名和密码。我得到了第一个下载没问题,它工作得很好。我在我的 httpClass 中使用内置的身份验证器来处理这个问题。我所要做的就是将我的用户名和密码传递给它,它就可以正常工作。
另一个端点将检查用户是否可以登录到服务器。这也返回一个 json。它还需要用户名和密码。但它不适用于我用于第一个的验证器。它一直给我 filenotfound 异常和它。我唯一想让它工作的是构建 url 并将其发送到 httpclass。通过像这样手动添加用户名和密码
http://mywebpage/endpoint1
然后像这样添加信息
http://mywebpage/endpint2
我正在使用代码手动执行此操作。我认为这不是正确的方法,因为我开始工作的第一个方法看起来是正确的方法。任何建议,将不胜感激。
这是我正在使用的 html 类
public class MyHttpClass extends AsyncTask<String, Void, String> {
private String user;
private String pass;
Activity act;
//this is used if you need a password and username
//mainly for logins to a webserver
public MyHttpClass(String user, String pass)
{
this.user = user;
this.pass = pass;
}
@Override
protected String doInBackground(String... params) {
String url = params[0];
return http(url);
}
private String http(String myUrl)
{
String respone = null;
HttpURLConnection urlConnection = null;
try
{
URL url = new URL(myUrl);
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(user, pass.toCharArray());
}
});
urlConnection = (HttpURLConnection)url.openConnection();
InputStream inputStream = urlConnection.getInputStream();
if(inputStream != null)
{
respone = streamToString(inputStream);
inputStream.close();
}
}catch (IOException ie)
{
//ie.printStackTrace();
Log.d("Issue with Http: " , "IOException");
ie.printStackTrace();
}finally {
if(urlConnection != null)
{
urlConnection.disconnect();
}
}
return respone;
}
这是我正在做所有测试的主要类(class)
public class MainActivity extends AppCompatActivity {
EditText user, pass;
TextView reuslt;
String myJson;
String param1 = "?email=";
String param2 = "&password=";
String email, password;
String customerInfo, loginUrl, promo;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
customerInfo = "http://mywebpage/mobileCustomers";
loginUrl = "http://mywebpage/mobileCustomers/validatePassword";
promo = "http://a mywebpage/promotions";
user= (EditText)findViewById(R.id.username);
pass = (EditText)findViewById(R.id.password);
reuslt = (TextView)findViewById(R.id.results);
Button promotion = (Button)findViewById(R.id.button);
Button crmTest = (Button)findViewById(R.id.user);
Button loginTest = (Button)findViewById(R.id.login);
if (promotion != null) {
promotion.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
email = user.getText().toString();
password = pass.getText().toString();
Log.d("User:" , email);
Log.d("Pass: ", password);
MyHttpGet task = new MyHttpGet(email, password);
try {
myJson = task.execute(promo).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}catch (NullPointerException np)
{
np.printStackTrace();
}
reuslt.setText(myJson);
}
});
}
if (crmTest != null) {
crmTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String email = user.getText().toString();
String password = pass.getText().toString();
email = param1 + email;
password = param2 + password;
Log.d("User:" , email);
Log.d("Pass: ", password);
String url = customerInfo+email+password;
Log.d("Url" , url);
MyHttpGet task = new MyHttpGet(email, password);
try {
myJson = task.execute(url).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}catch (NullPointerException np)
{
np.printStackTrace();
}
reuslt.setText(myJson);
}
});
}
if (loginTest != null) {
loginTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String email = user.getText().toString();
String password = pass.getText().toString();
email = param1 + email;
password = param2 + password;
Log.d("User:" , email);
Log.d("Pass: ", password);
String url = loginUrl+email+password;
Log.d("Url" , url);
MyHttpGet task = new MyHttpGet(email, password);
try {
myJson = task.execute(url).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}catch (NullPointerException np)
{
np.printStackTrace();
}
reuslt.setText(myJson);
}
});
}
}
最佳答案
在 android 中使用 Volley 库。它与 GSON 一起使用以发出自定义请求,因此您无需担心 JSON 创建和 JSON 解析。这一切都非常简单。
看看这些链接 http://developer.android.com/training/volley/request-custom.html
关于android - 基本认证 android UrlConnection Get,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36853964/
在我的程序中,我需要跟踪已打开的与某些 HTTP 服务器的连接列表 - 以便在需要时立即断开连接。 我遇到了以下问题。如果我连接到 HTTP 服务器,一切正常,但如果连接到 HTTPS,则连接不会从列
我正在尝试写信给 URLConnection#getOutputStream ,但是,在我调用 URLConnection#getInputStream 之前,实际上并没有发送任何数据。 .即使我设置
我有一组对象,我试图通过 POST 发送到 API。第一个对象将按原样通过,然后我得到: java.net.ProtocolException: cannot write request body a
我在尝试发送文本时遇到 URLConnection 编码问题。 我的代码是这样的: final URL url = new URL(urlString); final URLConnection ur
我有这种方法,可以从雅虎财经下载 .csv 文件并将其保存在本地。它是在循环期间访问的,因此它从列表中下载许多文件。然而,有时符号输入不正确、不再存在或连接超时。如何修改此方法,以便重试连接超时并跳过
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import
打开 URLConnection 时,我使用以下代码来获取内容长度,但它返回 -1。 URL url = new URL(sUrl[0]); URLConnection connection = ur
默认情况下,URLConnection 的超时为 0,这是无限制的。 XXXXX 的合理值是多少? URL url = ... URLConnection uCon = url.openConnect
我无法打开具有特定网络资源的 URLConnection。我得到了 “java.net.ConnectException:连接超时:”。是因为该域阻止了直接 URL 连接吗?如果是这样,他们是如何阻止
我看过文本文件示例,但是否以与 URLConnection 相同的方式将音频文件直接保存到服务器? 最佳答案 是的,一样的。尽管确保使用二进制输出流将内容写入磁盘。 类似于: URLConne
我一直在尝试从网页获取信息,特别是此网站:http://www.ncbi.nlm.nih.gov/pubmed?term=%22pulmonary%20disease%2C%20chronic%20o
在我使用 Apache 库 (org.apach.httpclient) 向带有参数 (BasicNameValuePair) 的 Php 脚本发出请求之前, 然后现在我想删除那些库以减小 APK 大
我正在使用 android 应用程序,我正在从 url 下载文件。一切正常,但是当互联网连接介于两者之间(打开连接后)时,下载超时永远不会发生并且连接永远不会结束。 给我一个解决这个问题的方案
我只是想了解一下 JacksonJson 库。为此,我尝试将 Places API 中的 JSON 数据转换为字符串。 我的 key 有效(我在浏览器和另一个应用程序中进行了测试),但出现错误。这是代
我目前正在 Eclipse 上使用 Java 7、Maven、Spring MVC 和 Eclipselink JPA 编写 Web 服务,以访问连接到内部网络的温度/湿度传感器的值。我使用 curl
HttpsURLConnection 有问题 - 未使用代理。 这是代码: //proxy String type = "https"; System.getProperties().put(type
我目前正在 Eclipse 上使用 Java 7、Maven、Spring MVC 和 Eclipselink JPA 编写一个 Web 服务,以访问连接到内部网络的温度/湿度传感器的值。我使用cur
在我的应用程序中,我需要下载一些网页。我是这样做的 URL url = new URL(myUrl); HttpURLConnection conn = (HttpURLConnection) url
我正在尝试使用 URLConnection 获得最低级别的字节计数.我已经用 CountingInputStream 计算了两个流传递的数据和 CountingOutputStream来自 Apach
我正在使用这段代码创建一个常规的 HTTP 连接: URLConnection cn = new URL( "http://...." ).openConnection(); cn.connect()
我是一名优秀的程序员,十分优秀!