gpt4 book ai didi

android - Uri 生成器返回困惑的 URI

转载 作者:行者123 更新时间:2023-11-30 03:34:52 57 4
gpt4 key购买 nike

因此,我尝试将 ID 参数附加到 URI 的末尾,当用户单击我的列表中的项目时,用户将被发送到该 URI。我的代码如下:

public void onItemClick(AdapterView<?> parent, View view, int pos, long id) {
Intent i = new Intent(Intent.ACTION_VIEW);
//items.get(pos) returns the UPI needed. Append to http://www.cs.auckland.ac.nz/our_staff/vcard.php?upi=
Uri.Builder b = Uri.parse("http://www.cs.auckland.ac.nz/our_staff/vcard.php?upi=").buildUpon();
b.appendEncodedPath(items.get(pos));
Uri uri = b.build();
i.setData(uri);
Log.d("URL of staff", uri.toString());
activity.startActivity(i);
}

现在,我应该获得以下形式的 URI:

http://www.cs.auckland.ac.nz/our_staff/vcard.php?upi=pden001

例如。但是Logcat显示获取到的URI其实是

http://www.cs.auckland.ac.nz/our_staff/vcard.php/pden001?upi=

为什么它会将 pden001 附加到中间

我也尝试了 appendPath() 并得到了相同的结果,而 Android 开发者教程在这种情况下并不是很有帮助。

最佳答案

Uri 构建器处理基础 URI 的方式与查询参数不同,但您已将它们组合到此字符串中:

"http://www.cs.auckland.ac.nz/our_staff/vcard.php?upi="

我认为你应该做的是让 ?upi= 离开你的字符串文字,然后附加你的 upi 参数和 pden001 值使用 appendQueryParameter() 方法:

  //items.get(pos) returns the UPI needed. Append to http://www.cs.auckland.ac.nz/our_staff/vcard.php
Uri.Builder b = Uri.parse("http://www.cs.auckland.ac.nz/our_staff/vcard.php").buildUpon();
b.appendQueryParameter("upi", items.get(pos));
Uri uri = b.build();
i.setData(uri);

关于android - Uri 生成器返回困惑的 URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16756971/

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