- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
StackOverflow 宇宙中的智者们好。我希望您能够帮助我解决我遇到的问题。
下面代码的目的是显示该符号是否会向 yahoo API 请求有效响应。
函数 GetSymbol 接受一个 double 值并返回一个字符串,在 GetSymbol(6149) 的情况下,返回的字符串是“IBM”。 (仅供引用,在实际情况中,
symbol = GetSymbol(6149);
//symbol = "IBM"; // This is to show that it works normally
代码并不真正在函数中,它只是出于我的测试目的。当。。。的时候符号=“IBM”;不是//out,它工作得很好,但本身就不是。在实际代码中,调用者线程看起来像 if(test(GetSymbol(6149)) == 0)。 (0表示没有错误,1表示有错误)。
由于某种原因,即使 GetSymbol(6149) 的返回值等同于“IBM”,URL yahootest 接受后者而不接受前者。 (使用 GetSymbol(6149) 作为 test() 的输入给出了 URI 不能为 null 的异常。您能想到原因吗?
为了防止您认为有帮助,我在测试函数下方列出了“获取符号”函数。它的调用是
while(i <= Math.pow(26,4)){
GetSymbol(i);
i++;
}
这是测试函数
public int test(String symbol){
int testnum = 0;
symbol = GetSymbol(6149);
//symbol = "IBM"; // This is to show that it works normally
String url = "http://download.finance.yahoo.com/d/quotes.csv?s="
+ symbol + "&f=nsl1op&e=.csv";
try{
URL yahootest = new URL(url);
URLConnection data = yahootest.openConnection();
Scanner input = new Scanner(data.getInputStream());
}catch(Exception e){
System.out.println(e.getMessage());
testnum++;
}
return testnum;
}
这是 GetSymbol 函数
public String GetSymbol(double i){
double parts = Math.floor(i/26);
double remainder = Math.floor(parts/26);
double remainder2 = Math.floor(remainder/26);
int a = 0;
int b = 0;
int c = 0;
int d = 0;
String e = "%5E";
if(i <= 26){
a = (int) (i + 64);
}
else if(i <= Math.pow(26,2)){
a = (int) parts;
b = (int) (i - (26*a));
a = a + 64;
b = b + 64;
if(b == 64){b++;}
}
else if((i <= Math.pow(26,3))){
a = (int) remainder;
b = (int) (parts -(remainder*26));
c = (int) (i - (parts*26));
a = a + 64;
b = b + 64;
c = c + 64;
if(b == 64){b++;}
if(c == 64){c++;}
}
else if((i <= Math.pow(26,4))){
a = (int) remainder2;
b = (int) (remainder - (remainder2*26));
c = (int) (parts - (remainder * 26));
d = (int) (i - (parts*26));
a = a + 64;
b = b + 64;
c = c + 64;
d = d + 64;
if(b == 64){b++;}
if(c == 64){c++;}
if(d == 64){d++;}
}
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append(String.valueOf((char) a));
stringBuilder.append(String.valueOf((char) b));
stringBuilder.append(String.valueOf((char) c));
stringBuilder.append(String.valueOf((char) d));
String string = stringBuilder.toString();
symbol = string;
return symbol;
}
这是整个堆栈跟踪
java.lang.IllegalArgumentException: URI can't be null.
at sun.net.spi.DefaultProxySelector.select(DefaultProxySelector.java:147)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1097)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:997)
at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:931)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1511)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1439)
at Stocks.Begin.test(BasicApp.java:185)
at Stocks.Begin.<init>(BasicApp.java:42)
at Stocks.BasicApp.main(BasicApp.java:21)
最佳答案
如果我不得不猜测,这与您在使用 GetSymbol 时将 4 个字符附加在一起来创建 URL 的事实有关,但 IBM 只有 3 个字符。当使用 GetSymbol 而不仅仅是“IBM”时,很可能会出现一个隐藏符号,例如“IBM\0”。据我所知,您需要做的就是修改 GetSymbol 函数,如下所示:
StringBuilder stringBuilder = new StringBuilder();
if(a > 0) stringBuilder.append(String.valueOf((char) a));
if(b > 0) stringBuilder.append(String.valueOf((char) b));
if(c > 0) stringBuilder.append(String.valueOf((char) c));
if(d > 0) stringBuilder.append(String.valueOf((char) d));
String string = stringBuilder.toString();
它的作用是确保每个字符不是您之前设置的默认 0 (int a = 0; ...),然后再将其放入字符串中,因为网站不喜欢您说“example.com/test\0”,他们更喜欢“example.com/test”。不确定我是否说得完全清楚,所以如果您有任何问题请告诉我。简而言之,您正在检查需要多少个字符,并以同样的方式设置 a、b、c 和 d,但随后您继续附加所有 4 个字符,无论您知道需要多长时间
关于JAVA URI 不能为空 - 协助此功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24708856/
使用 ruby 1.9.2-p290。我在尝试解析如下 URI 时遇到问题: require 'uri' my_uri = "http://www.anyserver.com/getdata?anyp
根据 http://tools.ietf.org/html/rfc3986和 http://en.wikipedia.org/wiki/Uniform_resource_identifier , UR
如何在文本 block 中发现 URI? 这个想法是将这样的文本运行变成链接。如果只考虑 http(s) 和 ftp(s) 方案,这很容易做到;但是,我猜测一般问题(考虑 tel、mailto 和其他
我的一些网址上有一些特殊字符。例如: http://blabla.com/title/?t=burası 当我从其他页面提供指向该页面的链接时,我使用: URI.encode(s) 产生这个链接: /
我在 Windows Mobile 上使用紧凑型框架/C#。 在我的应用程序中,我通过序列化对象并使用 HttpWebRequest/POST 请求向上发送信息来将数据上传到服务器。在服务器上,发布数
我正在做一个实验,我发现将 Canvas 转换为 blob,然后转换为数据 URI 会导致与直接从 Canvas 获取数据 URI 不同的 URI。打开时的内容在两个 URI 上几乎相同。 使用 bl
我正在尝试在 Rails 3 中实现 OAuth 提供程序。当我尝试授权客户端应用程序时,出现此错误。我正在使用 RESTful auth 插件和 pelles OAuth 插件。当我通过 Rails
我有一个编码的 UI 测试方法: public void MyTestMethod() { string baseUrl = "www.google.com"; GlobalVaria
我知道这是一个常见的错误,我正在使用一个已知的解决方案,但它仍然给我同样的错误: require 'open-uri' url = "http://website.com/dirs/filex[a]"
我正在尝试使用 .NET 中的 HttpClient 来使用 Web 服务,并且在我完成了 msdn 中提到的所有步骤之后 o 出现以下异常:提供了无效的请求 URI。请求 URI 必须是绝对 URI
我正在尝试检索文件的 URI。该文件存储在: /storage/emulated/0/AppName/FileName.png 如果我使用 Uri.fromFile(file),我得到的是 file:
我想知道 (SIP) URI 中的不同参数分隔符表示什么? 部分以;分隔,例如: . 其他用?隔开和 & ,例如: 最佳答案 SIP 分隔符规则来自RFC 2396 RFC 3986 已弃用.但是在
我想调用decodeUrl(...),我这样做是: import "dart:uri"; main() { decodeUrl("str"); } 但是现在有了最新的Dart-SDK,它会报告
在 URI 中,空格可以编码为 + .既然如此,那么在创建具有国际前缀的 tel URI 时是否应该对前导加号进行编码? 哪个更好?两者在实践中都有效吗? Call me Call me 最佳答案 不
我试图弄清楚电子邮件地址的格式是否可以说符合 URI 的定义,但到目前为止我还没有找到明确的确认。我希望有人可以在这里为我提供一些见解。预先感谢:) 最佳答案 是的,但带有“mailto:”前缀。 U
因此,我尝试将 ID 参数附加到 URI 的末尾,当用户单击我的列表中的项目时,用户将被发送到该 URI。我的代码如下: public void onItemClick(AdapterView par
这是 Converting file path to URI 的后续问题. 考虑: require 'uri' uri = URI.join('file:///', '/home/user/dir1/
我在 pl/sql 中创建了一个名为 tester 的包。但我收到以下消息。 绝对URI中的相对路径:java.net.URI.checkPath(URI.java:1823) --Package D
我在 gitlab 上有一个 git repo,使用私有(private) pod 和其他公共(public) pod,下面是我的 Podfile source 'git@gitlab.mycompa
我正在尝试将我的 Rails 应用程序推送到 heroku 上,我正在使用 heroku RedisToGo 附加组件我经历过这个tutorial并完成了那里提到的所有步骤。 但是在推送 heroku
我是一名优秀的程序员,十分优秀!