如何创建 java.net.URL 来引用 CSS?有可能吗?
我已经尝试了其他几种类似的方法来检查它是否是一个 css 页面,但它不起作用(没有错误,但它没有):
int code = con.getResponseCode();
String type = con.getContentType();
con.disconnect();
//returns null if the connection had problems or its does not contain css
if (code != HttpURLConnection.HTTP_OK || !type.contains("stylesheet")) {
return null;
}
还有其他可能的解决方案吗?基本上我尝试做的是获取css页面并打印它。