Java上傳檔案到遠端伺服器和瀏覽器預覽圖片

PromiseForYou發表於2024-11-04

匯入maven依賴

  <dependency>
	  <groupId>com.jcraft</groupId>
	  <artifactId>jsch</artifactId>
	  <version>0.1.54</version>
  </dependency>

建立一個工具類 UploadImage

import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.io.OutputStream;

@Component
@Slf4j
public class UploadImage {

    /**
     * 利用JSch包實現SFTP上傳檔案
     * @param bytes  檔案位元組流
     * @param fileName  檔名
     * @throws Exception
     */
    public void sshSftp(byte[] bytes,String fileName) throws Exception{

        int port = 22;
        String user = "root";
        String password = "";
        String ip = "";

        // 伺服器儲存路徑
        String filePath ="";
        Session session;
        Channel channel = null;

        JSch jSch = new JSch();

        //採用指定的埠連線伺服器
        session = jSch.getSession(user, ip , port);

        //如果伺服器連線不上,則丟擲異常
        if (session == null) {
            throw new Exception("session is null");
        }

        //設定登陸主機的密碼
        session.setPassword(password);
        //設定第一次登陸的時候提示,可選值:(ask | yes | no)
        session.setConfig("userauth.gssapi-with-mic","no");
        session.setConfig("StrictHostKeyChecking", "no");
        //設定登陸超時時間
        session.connect(30000);

        OutputStream outstream = null;
        try {
            //建立sftp通訊通道
            channel = (Channel) session.openChannel("sftp");
            channel.connect(1000);
            ChannelSftp sftp = (ChannelSftp) channel;


            //進入伺服器指定的資料夾
            sftp.cd(filePath);

            //以下程式碼實現從本地上傳一個檔案到伺服器,如果要實現下載,對換一下流就可以了
            outstream = sftp.put(fileName);
            outstream.write(bytes);

        } catch (Exception e) {
            log.error("上傳檔案失敗", e);
        } finally {
            //關流操作
            if (outstream != null) {
                outstream.flush();
                outstream.close();
            }
            session.disconnect();
            if (channel != null) {
                channel.disconnect();
            }
            System.out.println("上傳成功!");
        }
    }
}

上傳圖片API

@RestController
@RequestMapping("/api")
public class FileUploadController {

    @PostMapping("/upload")
    public String uploadFile(@RequestPart("file") MultipartFile file) throws Exception {

        BufferedInputStream in = new BufferedInputStream(file.getInputStream());
        ByteArrayOutputStream out = new ByteArrayOutputStream(1024);

        byte[] temp = new byte[1024];
        int size = 0;
        while ((size = in.read(temp)) != -1) {
            out.write(temp, 0, size);
        }
        in.close();
        byte[] content = out.toByteArray();
        UploadImage.sshSftp(content, UUID.randomUUID().toString().replaceAll("-", "") + ".jpg");
        
        //返回生成的圖片名稱
        return uuid + ".jpg";
    }
}

然後啟動服務呼叫介面就可以將圖片上傳到目標伺服器上了,cd到目錄位置 就可以看到上傳的圖片了

訪問上傳的圖片

需要在伺服器上安裝nginx,我這裡已經安裝好了 安裝nginx的步驟可以百度

配置一下nginx的配置檔案

#驗證配置檔案是否正確
sudo nginx -t
# 重啟nginx
sudo nginx -s reload

然後就可以透過 ip + 路徑 + 圖片名稱 訪問該圖片了

例:http://123.45.67.89/images/testUpload.jpg

基礎知識,希望對你的成長之路有所幫助

相關文章