gpt4 book ai didi

java - 使用我的应用程序连接到 php .htaccess

转载 作者:行者123 更新时间:2023-12-02 03:24:44 24 4
gpt4 key购买 nike

我有一个由 .htaccess 文件锁定的 php 页面(用户名和密码)。我尝试使用我的 Android 应用程序连接到这个 php。

我在这里尝试此页面:Connect to php page using .htaccess with android application

但是这不起作用..

我的代码:

HttpClient cnxHttp = new DefaultHttpClient();
HttpPost paramCnx = new HttpPost(strings[0]);
paramCnx.setHeader("Authorization", "Basic " + new Base64().encodeToString("user:mdp".getBytes("UTF-8"), Base64.DEFAULT));

我在 getBytes 中收到错误:UnsupportedEncodingException。我不明白为什么,somoene 可以向我解释一下并给我正确的代码吗?

最佳答案

我找到了。答案:

String authorizationString = "Basic " + Base64.encodeToString(
("your_login" + ":" + "your_password").getBytes(),
Base64.NO_WRAP); //Base64.NO_WRAP flag
post.setHeader("Authorization", authorizationString);

关于java - 使用我的应用程序连接到 php .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56912353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com