将抓取的推文存入数据库
谁能告诉我如何将爬行的推文放入数据库中。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会考虑设置 mysql 数据库并使用 JDBC 以编程方式插入数据库。
可以找到有用的教程 这里。我将概述下面的核心步骤。
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.
Class.forName(String)
method.