上传txt文件到服务器
我想创建一个表单来将文件(txt、xls)上传到服务器,而不是数据库。
有谁知道有什么例子可以说明我如何做到这一点?
I want create a form to upload files (txt, xls) to the server, not the database.
Does anyone kown any example showing how I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了将文件加载到数据库服务器的文件系统中,您首先必须将文件上传到数据库,听起来您已经很熟悉了。从那里,您可以使用
UTL_FILE
包来编写BLOB 到数据库服务器的文件系统。In order to get the file on to the database server's file system, you would first have to upload the file to the database which it sounds like you are already familiar with. From there, you can use the
UTL_FILE
package to write the BLOB to the database server's file system.