티스토리 뷰
728x90
pom.xml
<dependency>
<groupId>com.hierynomus</groupId>
<artifactId>smbj</artifactId>
<version>0.10.0</version>
</dependency>
Java
@Value("${file.upload.server}")
private String server;
@Value("${file.upload.sharedFolder}")
private String sharedFolder;
@Value("${file.upload.user}")
private String user;
@Value("${file.upload.password}")
private String pass;
업로드
public void smbFileUpload(){
....
SMBClient client = new SMBClient();
try (Connection connection = client.connect(address)) {
AuthenticationContext ac = new AuthenticationContext(user, pass.toCharArray(), null);
Session session = connection.authenticate(ac); // Connect to Share
try (DiskShare share = (DiskShare) session.connectShare(sharedFolder)) {
File fileSource = new File(file.getOriginalFilename());
file.transferTo(fileSource);
if(!share.folderExists(dateFolder)){
share.mkdir(dateFolder);
}
SmbFiles.copy(fileSource, share, "원하는 경로", true);
}
} catch(Exception e) {
e.printStackTrace();
}
}
다운로드
@GetMapping(value = "/download", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
public ResponseEntity<byte[]> fileDownload(@RequestHeader("User-Agent") String userAgent,
@RequestParam String filename,
@RequestParam String path,
@RequestParam String originName) {
byte[] outData = new byte[0];
String fileExg = FilenameUtils.getExtension(filename);
try {
SMBClient client = new SMBClient();
try (Connection connection = client.connect(server)) {
AuthenticationContext ac = new AuthenticationContext(user, pass.toCharArray(), null);
Session session = connection.authenticate(ac); // Connect to Share
try (DiskShare share = (DiskShare) session.connectShare(sharedFolder)) {
com.hierynomus.smbj.share.File file = share.openFile(path + File.separator + filename, EnumSet.of(AccessMask.GENERIC_READ), null, SMB2ShareAccess.ALL, SMB2CreateDisposition.FILE_OPEN, null);
try (
InputStream fin = new BufferedInputStream(file.getInputStream());
) {
outData = IOUtils.toByteArray(fin);
} catch (IOException e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
String downloadName = "다운로드 이름"
브라우저별 이름 처리
....
MimetypesFileTypeMap mimeTypesMap = new MimetypesFileTypeMap();
String type = mimeTypesMap.getContentType(downloadName);
return ResponseEntity.ok()
.header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=" + downloadName)
.header(HttpHeaders.CONTENT_TYPE, type)
.contentLength(outData.length)
.body(outData);
}
참고
SMBJ 프로토콜 라이브러리를 0.10.0을 썼는데 그 보다 상위 버전을 사용하면 추가로 뭔가를 설정해줘야 하는데 찾다가 그냥 0.10.0 버전을 썼다..
그리고 SMB로 접속할 윈도우 서버에서 445 포트가 열려있어야 한다..
728x90
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 북리뷰
- Mac
- intellij
- docker
- localtime
- mybatis config
- springboot
- oracle
- Github Status
- k8s
- Spring Security
- Linux
- 오라클
- input
- JavaScript
- Kotlin
- Bash tab
- config-location
- Spring
- window
- elasticsearch
- mybatis
- maven
- LocalDate
- LocalDateTime
- jQuery
- 베리 심플
- svn
- Java
- rocky
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함