创建用于上传和下载的 GUI 时出现问题通过Oracle表格下载文件
我想在Oracle form 10g中创建一个GUI,创建此页面的目的是:
-用户能够上传&查看上传的文件(上传到 ftp)
-用户能够删除他的文件(从 ftp)
-用户能够下载文件(从 FTP)
-这个 GUI 也应该能够传输大文件(大约 12M)
我是 Oracle forms 10g 的新手,因为在我开始之前,我想我最好在这里问我的问题&寻求帮助。
目前我们使用Oracle form 6i,并且我们使用批处理文件和文件。 ftp 服务用于手动移动文件,但通过增加我们的分支,我想如果我们自动完成这些工作,我们可以减少我们的错误。我们的分支机构现在也在 ftp 中手动复制他们的文件。
我正在寻找类似拖拽设计的设计。删除上传文件。 oracle 有哪些新服务可以让我更轻松地通过 ftp 和 ftp 进行连接?上传、下载/创建文件夹(到/从/在 ftp 中)?
我希望你有好主意与我分享。
I want to create a GUI in Oracle form 10g, the purpose of creating this page is :
-user able to upload & see uploaded file(upload into ftp)
-User able to remove his file(from ftp)
-user able to Download file(from FTP)
-this GUI should able transfer big files also(around 12M)
I am new in Oracle forms 10g because of that before I start, I guess it would be good I ask my question here & get help.
currently we use Oracle form 6i,and we use batch file & ftp service for moving file manually but by increasing our branch I guess if we do these work automatically we can decrease our faults. also our branch now copy their file manually in ftp.
I am looking for design something like drag & drop for upload files. What is new services from oracle to make me easier to connect via ftp & make upload, download/create folder (to/from/in ftp)?
I hope u have good idea for sharing with me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不是第一个问这个问题的人:例如,请参阅 http://forums.oracle .com/forums/thread.jspa?threadID=689655。然而,该方法(使用 WebUtil 获取文件,然后使用服务器上的 UTL_FTP 发送文件)似乎需要两次传输 - 从客户端到数据库服务器,然后从数据库服务器进行 FTP。
更好的方法可能是 Java Bean,请参阅 http://forms.pjc .bean.over-blog.com/article-23800297.html
You're not the first to ask: see for example http://forums.oracle.com/forums/thread.jspa?threadID=689655. However that method (using WebUtil to get the file, then use UTL_FTP on the server to send it) seems to require two transfers - from the client to the database server, then FTP from the database server.
A better method might be a Java Bean, see http://forms.pjc.bean.over-blog.com/article-23800297.html
如果文件的最终目的地是 FTP 服务器,那么您最好使用专用的 FTP 客户端,而不是 Oracle Forms。另外,FTP 是一种不安全的协议,因此我会切换到 SFTP(使用 SSH 的 FTP)或 FTPS(基于 SSL 的 FTP)。
If the ultimate destination of the file is an FTP server, then you are best off using a dedicated FTP client, rather than Oracle Forms. Also, FTP is an insecure protocol, so I'd be switching to SFTP (FTP using SSH) or FTPS (FTP over SSL).