将抓取的推文存入数据库

发布于 2024-11-27 03:30:29 字数 129 浏览 0 评论 0原文

谁能告诉我如何将爬行的推文放入数据库中。我使用 java 爬行了推文。我把它保存在一个文档中。我正在尝试使用 xampp 创建数据库并存储推文。我对此有点陌生,我正在尝试学习如何构建自己的网络应用程序。我被困在这里了。任何帮助将不胜感激。谢谢。

Can anyone tell me how I can go about getting crawled tweets into a database.I crawled the tweets using java. I stored it in a document. I am trying to use xampp to create a database, and store the tweets. I am kinda new to this, and i am trying to learn how to build my own web application. I am stuck here. Any help would be greatly appreciated. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我三岁 2024-12-04 03:30:29

我会考虑设置 mysql 数据库并使用 JDBC 以编程方式插入数据库。

可以找到有用的教程 这里。我将概述下面的核心步骤。

  1. 在您的服务器上下载并安装 MySQL。您可能还想将其安装在开发计算机上进行测试。 链接
  2. 下载 JDBC 连接器 jar。这是从 Java 代码中连接到 MySQL 数据库所必需的。 链接
  3. 加载 JDBC 连接器 jar 中的驱动程序。这通常是使用 Class.forName(String) 方法完成的。
  4. 在 Java 中创建连接并使用 Java/Sql 接口通过代码执行您想要的操作。 JavaDoc

I would look at setting up a mysql database and use JDBC to insert into the database programatically.

A helpful tutorial can be found here. I will outline the core steps below.

  1. Download and install MySQL on your server. You may also want to install it on your development machine for testing. Link.
  2. Download the JDBC connector jar. This is needed to connect to the MySQL database from within Java code. Link.
  3. Load the driver that lives in the JDBC connector jar. This is typically done using the Class.forName(String) method.
  4. Create a connection in Java and use the Java/Sql interfaces to do what you want with the code. JavaDoc.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文