为什么JAVA可以,JSP却不能导出oracle数据库?
在JAVA控制台中,可以导出ORACLE9i,代码:
Runtime run = Runtime.getRuntime(); run.exec("cmd.exe /c e:\\abc.bat ");
批处理文件为:exp scott/tiger@oracle file=scott owner=scott
但在JSP中,却无法导出.用JAVABEAN 和 SERVERLET都不行.在JSP中运行无异常,但没有结果.搜索过计算机,没有生成的文件.
不知在B/S模式下,数据库怎样才能备份?
谢谢!!
------解决方案--------------------String commandString = request.getParameter("Command");//获得命令行
Runtime run = Runtime.getRuntime();
run.exec(commandString);//执行命令行
你试试