- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一个项目。它分为两部分。对于这一部分,我们应该构建服务器、客户端通信器和其他功能。我们还没有构建客户端;为了通过该项目的这一部分,有一个自动化测试人员将充当客户端。它将指定一个随机端口号并创建服务器,然后通过通信器调用一堆方法。
我唯一可以访问端口号的地方是初始化服务器时。服务器本身有一个设置服务器的 main 方法;我尝试将其存储为静态变量以便稍后访问,但是当我尝试访问它时,我总是得到 0 作为请求中的端口号,这是错误的。
此行来自 ClientCommunicator。具体来说,这就是“客户端”调用 validateUser 函数时发生的情况,该函数只接受两个参数:用户名和密码。我无法将端口号作为附加参数传递。
String response = HttpClientHelper.doGetRequest(Helper.BASE_URL +"validateUser?username="+username+"&password="+password,null);
Helper 有一个静态最终变量 BASE_URL,当前设置为
public static final BASE_URL = "http://localhost:8080/";
显然,这不再有效。我想要进行的更改是将我的客户端通信器中的线路转到
String response = ...(Helper.BASE_URL + (PORT_NUMBER) + "/" +...
其中 PORT_NUMBER 实际上类似于 Server.PORT_NUMBER,
并将 BASE_URL 转换为
public static final BASE_URL = "http://localhost:"
但是,我不确定如何将端口号动态添加到 doGetRequest 中。我尝试将它存储为服务器类中的静态变量,该变量在服务器启动时初始化,但如果我尝试以这种方式访问它,它最终会默认为 0。
我的服务器类(我没有在此类中对端口号进行类型检查,它是在其他地方完成的):
public class IndexerServer{
public static int port;
public enum RequestMethod {
GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS, TRACE
}
public static void main(String[] args) throws IOException {
int port = 8080;
if(args.length > 0){
port = Integer.parseInt(args[0]);
}
IndexerServer.port = port;
InetSocketAddress addr = new InetSocketAddress(port);
HttpServer server = HttpServer.create(addr,0);
Helper.BASE_URL+= port + "/";
server.createContext("/validateUser",new ValidateUser());
server.createContext("/getProjects",new GetProjects());
server.createContext("/getSampleImage",new GetSampleImage());
server.createContext("/downloadBatch",new DownloadBatch());
server.createContext("/getFields",new GetFields());
server.createContext("/search",new Search());
server.createContext("/submitbatch",new SubmitBatch());
server.createContext("/images",new ImageDownloader());
server.createContext("/fieldhelp",new HtmlDownloader());
server.createContext("/knowndata",new HtmlDownloader());
server.setExecutor(Executors.newCachedThreadPool());
server.start();
System.out.println("Server is listening on port "+port);
}
}
以及 HTTPHelper 的相关部分
public class HttpClientHelper
{
public static String doGetRequest(String urlString,Map<String,String> headers){
URL url;
HttpURLConnection connection = null;
try {
//Create connection
url = new URL(urlString);
connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.setRequestProperty("Content-Language", "en-US");
connection.setUseCaches (false);
connection.setDoInput(true);
connection.setDoOutput(true);
if(connection.getResponseCode() == 500){
return "failed";
}
//Get Response
InputStream is = connection.getInputStream();
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
String line;
StringBuffer response = new StringBuffer();
while((line = rd.readLine()) != null) {
response.append(line);
}
rd.close();
return response.toString();
} catch (Exception e) {
e.printStackTrace();
return null;
} finally {
if(connection != null) {
connection.disconnect();
}
}
}
最佳答案
如果您不关心丢失输入 URL 的权限或 anchor 部分,您可以解析它,分解它并重新创建它,替换端口:
final int PORT = 42;
URL url = new URL(str);
URL newurl = new URL(url.getProtocol(), url.getHost(), PORT, url.getFile());
例如,对于输入:
http://user:pass@hello.com:1234/path/file.ext?param=value#anchor
输出为:
http://hello.com:42/path/file.ext?param=value
如果您想保留权限/ anchor ,则必须适当修改主机并输出(url.getAuthority()
和 url.getRef()
将返回解析后的组件)。
关于java - 如何为 HTTPUrl 动态指定端口号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22523724/
我想通过 jQuery 在每个页面上用图像(HTML)替换特定的口号(文本),电子邮件地址中的口号除外。 首先我尝试了这个,但问题是它输出的是文本而不是 HTML jQuery("p").text(f
我是一名优秀的程序员,十分优秀!