使用 blob 或 clob 在 Java 中上传 Excel 工作表
我是java新手。我的任务是将 Excel 工作表上传到数据库(MySQL)。谁能帮我解决代码吗?提及步骤并建议使用哪个 jar 文件?提前致谢。
I am new to java. I have a task of uploading Excel sheet to database (MySQL). Can anyone help me with the code ? Mention the steps and also suggest which jar file to use? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的关键字是 Java Database Connectivity 或 JDBC。它是 Java 的 API,可以直接与任何数据库交互。您需要 MySQL 连接器才能使用 MySQL。网络上有大量关于如何执行此操作的教程。乍一看很有帮助的两个是:
如果您对于 MySQL 新手,请阅读非常好的、全面的 MySQL 文档:
The keyword you are looking for is Java Database Connectivity or JDBC. It's Java's API to directly interact with any database. You'll need the MySQL connector to be able to use MySQL. There are tons of tutorials on the web on how to do this. Two that look helpful on first glance are:
If you are new to MySQL, please read out the very good and comprehensive documentation of MySQL: