ダウンロード用のディレクトリがあるホームページがあります。このホームページのすべてのファイルをそのディレクトリから自動的に読みたい。
たとえば、ホームページと、表示したいダウンロードファイルを含むwww.homepage.org
サブディレクトリがあります。resources/downloads
SpringとJSPを実行しているJavaサーバーがあり、次のことを試しましたが、まったく機能しませんでした。
String path = request.getContextPath();
path += DOWNLOADS;
URL url = null;
String server = request.getServerName();
try {
url = new URL("https", server, request.getLocalPort(), path);
} catch (MalformedURLException e) {
e.printStackTrace();
}
if (url != null) {
String externalForm = url.toExternalForm();
File directory = new File(externalForm);
String[] files = directory.list();
for (String file : files) {
;
}
}