如何从Oracle连接到Java程序
我想通过 oracle 将一个文件夹及其中包含的所有内容复制到 FTP。
我发现这项工作对于 Oracle 来说有点困难,所以我决定用 Java 编写一个程序并使用 Java 程序复制文件,但我不知道如何在 Oracle 程序和 Java 之间建立连接。
我想提交源文件夹和目标文件夹,我的 Java 程序可以轻松地为我进行复制,如果复制完成,则通知我的 Oracle 程序(表单)。
您能否建议我应该使用 Java 来 FTP 我的文件,还是使用 Oracle 表单技术来传输我的文件会更好?
如果您为我提供一个 java 示例,我将非常感激,以便我了解如何将文件传输到 ftp 地址。(如果您有 Oracle 中的任何示例,那就更好了)
谢谢
I want to copy a folder and everything that is included in it to a FTP by oracle.
I found out this work is a little bit hard with Oracle so I decided to write a program in Java and copy the file with a Java program but I dont have any idea about how I can make connection between an Oracle program and Java.
I want to submit the source folder and destination folder and my Java program easily do the copy for me and if the copy completed inform my oracle program(form).
would you please advise me should I use Java for FTP my files or it would be better I use Oracle forms technology for transferring my files?
I would so appreciate if you provide me a sample in java that I see how I can transfer my files to a ftp address.(if you have any sample in Oracle it would be even more better)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 PL/SQL 实用程序库页面
http://code.google.com/p/plsql- utils/
特别是“使用 PL/SQL 传输文件 (FTP)”部分,您将在其中找到在 PL/SQL 中执行此操作所需的代码(不需要 Java)。
See the PL/SQL Utility Library page
http://code.google.com/p/plsql-utils/
Specifically the "Transfer files (FTP) using PL/SQL" section, there you will find the code you need to do this in PL/SQL (no Java required).