androidmobileが写真を撮ってサーバーにアップロードするアプリケーションを作成しました。サーバーはイメージを受け入れ、ローカルディレクトリに保存し、データベースへのパスを更新します。ローカルホスト(Windows)ではすべて正常に動作しますが、warファイルをデプロイするとファイルが作成されません。問題は、ローカルホストがWindows上にあるのに、メインサーバー(ISP)がLinux上にあることです。私のローカルホストとメインサーバー(ISP)の両方がGlassfishを使用しています。メインサーバー(ISP)で、adminを介してログに記録し、warファイルをデプロイしています。
質問する
124 次
1 に答える
0
これはあなたの問題かもしれません。
Where do you store your file in the server. In windows you might be giving the path as
D://images/dir1/......
In linux this path is not valid. It should look something like
/home/tomcat/images/repo/...........
Please post the code where you mention the location of the directory in which you store the images.
于 2012-11-21T09:42:01.693 に答える