java编程中如何从一个系统访问另一个系统的文件?
我正在 Java 中运行一个 Web 服务,它将由 .net 应用程序调用。我们还有另一个与此相关的应用程序,它是一个 Java 应用程序(前端),我的问题是在调用 Web 服务时,它将显示 Java 应用程序日志文件。那么如何访问Web服务中该应用程序中的文件来写入日志。
提前致谢
i am running a web service in java and it will called by .net application .we have another application regarding this which is a java application(front end), my question is while calling the web service , it will be shown the java application log file. so how to access the file in that application in web service to write the log.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
访问另一个系统上的文件的最简单方法是使用 NFS 或 SMB。挂载文件所在的目录并访问它们,就好像它们位于您要访问它们的系统的本地目录一样。
The simplest way to access a file on another system is to use NFS or SMB. Mount the directory where the file(s) are and access them as if they were local to the system you want to access them with.