我是 Java 初学者,目前我正在开发一个 SWING JAVA 应用程序。
这个应用程序是做什么的。做。
如果用户提示一些数字(比如说)[输入],那么应用程序。连接到特定网站并在那里搜索(网址:http ://www.example.com/search?text=[user 's input])。输出(我想要)将是是否可以找到用户的输入(借助布尔真/假和 url 连接)。只是这个。
我已经阅读了在某个网站中搜索的 Java 程序,但我不想使用爬虫。对我来说似乎很难。另外,我认为,我不需要解析网站,因为如果用户的输入存在,它将返回用户正在寻找的内容。所以不需要像 jsoup 这样的程序。
我的问题是:我应该用什么肉。如何解决这个问题呢?基本上,如何将用户的输入放入网站 URL,然后单击摆动按钮在该网站上进行搜索
编辑: 所以几点。
- 用户输入应返回肯定结果,例如“example.com/descriptionOfProduct.k973311”,其中 97311 是该产品的特定 ID。它总是有 6 个数字。还有字母“k”。是不是也一直在。
- 如果用户输入不存在则 404。如果存在则见上文。而且 descriptionOfProduct 总是完全不同的。这绝对是随机的。
我使用httpclient apache。
关于那个特定的网站:没有用于搜索的 api,它是电子商务(eshop)。
这是我的代码,由于这个搜索功能,它没有完成。
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Scanner;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
public class Connection {
/**
* @param args
* @throws URISyntaxException
*/
@SuppressWarnings({ "resource", "unused" })
public static void main(String[] args) throws URISyntaxException {
HttpURLConnection connection = null;
try {
URL url = new URL("http://www.example.cz");
connection = (HttpURLConnection) url.openConnection();
connection.connect();
connection.getInputStream();
System.out.println("Connected to website");
// do something with the input stream here
// InputStream error = ((HttpURLConnection) connection).getErrorStream();
// # means special ID to understand where & what is wrong
} catch (MalformedURLException e1) {
e1.printStackTrace();
System.err.println("Something's wrong #1");
} catch (IOException e1) {
e1.printStackTrace();
System.err.println("Something's wrong #2");
} finally {
if(null != connection) { connection.disconnect(); }
}
URIBuilder builder = new URIBuilder();
builder.setScheme("http").setHost("www.example.com").setPath("/search")
.setParameter("text", "");
URI uri = builder.build();
HttpGet httpget = new HttpGet(uri);
这是摇摆应用程序
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JTextField;
import java.awt.BorderLayout;
import javax.swing.JButton;
/**
* @author John Malc
* @version
*
*/
public class app {
private JFrame frame;
private JTextField textField;
private JButton btnSearch;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
app window = new app();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public app() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(getTextField(), BorderLayout.NORTH);
frame.getContentPane().add(getBtnSearch(), BorderLayout.SOUTH);
}
private JTextField getTextField() {
if (textField == null) {
textField = new JTextField();
textField.setColumns(10);
}
return textField;
}
private JButton getBtnSearch() {
if (btnSearch == null) {
btnSearch = new JButton("search");
}
return btnSearch;
}
}