- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
除了最有经验的 JAVA 用户之外,我什么都不是,但是,我对我的问题感到非常绝望。每次执行以下代码时,都会收到以下错误:
java.util.zip.ZipException: Not in GZIP format
at java.util.zip.GZIPInputStream.readHeader(Unknown Source)
at java.util.zip.GZIPInputStream.(init)(Unknown Source)
at java.util.zip.GZIPInputStream.(init)(Unknown Source)
at DidYouMean.executeGet(DidYouMean.java:56)
at DidYouMean.didYouMean(DidYouMean.java:11)
at DidYouMean.main(DidYouMean.java:39)
Exception in thread "main" java.lang.IllegalArgumentException: String input must not be null....
我的一个 friend (使用 Mac,而不是我使用 Windows 7 64)能够执行该程序。所以这似乎不是代码本身的问题(无论如何它是由 Github 上的某人开发的)。我真的很感激任何帮助!尽管错误并不少见,但我对解决方案的搜索并不是很成功。
import java.io.*;
import java.net.*;
import org.jsoup.*;
import java.util.zip.*;
import org.jsoup.nodes.*;
import org.jsoup.examples.HtmlToPlainText;
public class DidYouMean {
public static String didYouMean(String s){
String word="";
String url="http://www.google.co.in/search?hl=en&q="+URLEncoder.encode(s);
String html=executeGet(url,"www.google.co.in",'i');
Document content=Jsoup.parse(html);
Element submitted=null;
try{
submitted=content.getElementById("topstuff").clone();
HtmlToPlainText h=new HtmlToPlainText();
word=h.getPlainText(submitted);
int q,p=word.indexOf("Did you mean:");
if(p>=0){
word=word.substring(p+"Did you mean:".length());
p=word.indexOf("<>");
if(p>0) word=word.substring(0,p);
word=word.trim();
}
else{
p=word.indexOf("Showing results for");
if(p>=0){
word=word.substring(p+"Showing results for".length());
p=word.indexOf("<>");
if(p>0) word=word.substring(0,p);
word=word.trim();
}
else return "No results";
}
}catch(Exception e){e.printStackTrace();}
return word;
}
public static void main(String args[]){
System.out.println(didYouMean(args[0]));
}
public static String executeGet(String targetURL,String host,char ch){
URL url;
HttpURLConnection connection=null;
try{
url=new URL(targetURL);
connection=(HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.setRequestProperty("Host",host);
connection.setRequestProperty("Accept-Encoding", "gzip,deflate,sdch");
connection.setRequestProperty("Accept-Language","en-US,en;q=0.8");
if(ch=='c') connection.setRequestProperty("User-Agent","Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5");
if(ch=='i') connection.setRequestProperty("User-Agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; ShopperReports 3.1.22.0; SRS_IT_E879047EB0765B5336AF90)");
connection.setUseCaches (false);
connection.setDoInput(true);
connection.setDoOutput(true);
GZIPInputStream gzis=new GZIPInputStream(connection.getInputStream());
InputStreamReader reader=new InputStreamReader(gzis);
BufferedReader in=new BufferedReader(reader);
String line;
StringBuffer response=new StringBuffer();
while((line=in.readLine())!=null) {
response.append(line);
response.append('\r');
}
in.close();
return response.toString();
} catch (Exception e) {e.printStackTrace();return null;}
}
}
最佳答案
connection.setRequestProperty("Accept-Encoding", "gzip,deflate,sdch"
您的请求表明它愿意接受以下任何一种编码格式:gzip
、deflate
和sdch
。一种方法是查看 response-headers
以查看服务器使用的编码类型并对其进行适当解码。
另一种方法是只接受gzip
关于java.util.zip.ZIPException : Not in GZIP format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13018732/
我在运行 GNU Visual Debugger 1.2.6 的 XP 虚拟机上尝试打开 Ada 文件 (.adb),但不断出现以下错误: not in executable format: File
我正在尝试获取 io:format/1 的输出结果。 我知道io_lib中也有类似的函数,io_lib:format/2,但是输出不一样。事实上,它根本没有做任何事情。 如果我尝试绑定(bind) i
我在 documentation 中找不到任何内容, 甚至 BreakBeforeBraces: Allman格式化我已经拆分的单行函数 void foo() { bar(); } 我想要类似的东西
请考虑函数f: open Format let rec f i = match i with | x when x () | i -> pp_open_hovbox std_form
如何在列表中的每三个参数后添加一个回车符(使用 ~%)? 例如,我现在: (format nil "~{~a ~}" (list '"one" '"two" '"three" '"four" '"fi
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 6 年前。 Improve
当我尝试在 Ubuntu 上编译 fprintf(stderr,Usage) 时,我遇到了这个错误: error: format not a string literal and no format
运行 cv2.getRectSubPix(img, (5,5), (0,0)) 抛出错误: OpenCV Error: Unsupported format or combination of for
我正在 cocos2d-x-2.1.4 上开发游戏,但是,当我尝试在 Android 上构建它时,它失败并出现错误:格式不是字符串文字且没有格式参数 [-Werror=format-安全] 在文件 C
运行时: $ clang-format -style=Google -dump-config > .clang-format 文件后附有省略号 (...)。 TabWidth: 8 Us
我想在纯函数中将 double 型转换为字符串。我很困惑为什么这不是纯粹的: wstring fromNumber(double n) pure { import std.format;
Common Lisp 的 format 是否有一个特别容易阅读的实现? 我找到了 SBCL's version ,但由于 SBCL 以 性能 Common Lisp 实现而著称,我想知道是否有一个更
嗨,我正在尝试在 JSP 页面上格式化字符串,它给了我错误,正如我在标题中提到的,我的代码是, String header=""; header = 12-29-2011 15;
clang-format 将我的行拆分为 80 列。有没有办法让停止断线? documentation似乎没有解决这个问题。 最佳答案 负责它的配置选项称为 ColumnLimit .您可以通过将其设
我有一个Angular 11项目,试图集成SpreadJS Designer,但在ngcc步骤Compiling @grapecity/spread-sheets-designer-angular :
我正在使用 clang-format 4.0.0来对齐我的个人项目。 我将以下配置用于 clang-format 。 Language: Cpp BreakBeforeBraces: A
我正在使用- char str[200]; ... sprintf(str,"%s", val) msg(str); sprintf(str, "%s: %s",timestr,"\n recv -"
我有这个 double 值: var value = 52.30298270000003 当我将它转换为 string 时,它失去了它的精度: var str = string.Format("{0}
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
如何使用 clang-format 始终将冒号左对齐。我不希望它被禁用:1234,但禁用:1234。 #pragma warning(disable: 1234) 最佳答案 我猜你需要这个。 Spac
我是一名优秀的程序员,十分优秀!