programing

기본 연결된 프로그램으로 파일을 여는 방법

goodsources 2022. 12. 19. 21:46
반응형

기본 연결된 프로그램으로 파일을 여는 방법

Java에서 기본 관련 프로그램으로 파일을 열려면 어떻게 해야 합니까? (예를 들어 동영상 파일)

를 사용할 수 있습니다.그 외의 옵션에 대해서는, 다음의 질문을 참조해 주세요.[ Java ] 주어진 파일에 대해 사용자 시스템 프리페어 에디터를 여는 방법?]

SwingHacks는 이전 버전의 Java를 위한 솔루션을 가지고 있습니다.

윈도우에서 Runtime 객체를 사용하여 'start' 명령어를 실행한 것 같습니다.Mac에서도 비슷한 명령어가 있습니다.

기본 프로그램으로 파일을 여는 몇 가지 예

Example 1 : Runtime.getRuntime().exec("rundll32.exe shell32.dll ShellExec_RunDLL " + fileName);
Example 2 : Runtime.getRuntime().exec("rundll32.exe url.dll FileProtocolHandler " + fileName);
Example 3 : Desktop.getDesktop().open(fileName);


alternative...

Runtime.getRuntime().exec(fileName.toString());
Runtime.getRuntime().exec("cmd.exe /c Start " + fileName);
Runtime.getRuntime().exec("powershell.exe /c Start " + fileName);
Runtime.getRuntime().exec("explorer.exe " + fileName);
Runtime.getRuntime().exec("rundll32.exe SHELL32.DLL,OpenAs_RunDLL " + fileName);

아니면...

public static void openFile(int selecType, File fileName) throws Exception {

    String[] commandText = null;

    if (!fileName.exists()) {
        JOptionPane.showMessageDialog(null, "File not found", "Error", 1);
    } else {

        switch (selecType) {
            case 0:
                //Default function
                break;
            case 1:
                commandText = new String[]{"rundll32.exe", "shell32.dll", "ShellExec_RunDLL", fileName.getAbsolutePath()};
                break;
            case 2:
                commandText = new String[]{"rundll32.exe", "url.dll", "FileProtocolHandler", fileName.getAbsolutePath()};
                break;
            case 3:
                commandText = new String[]{fileName.toString()};
                break;
            case 4:
                commandText = new String[]{"cmd.exe", "/c", "Start", fileName.getAbsolutePath()};
                break;
            case 5:
                commandText = new String[]{"powershell.exe", "/c", "Start", fileName.getAbsolutePath()};
                break;
            case 6:
                commandText = new String[]{"explorer.exe", fileName.getAbsolutePath()};
                break;
            case 7:
                commandText = new String[]{"rundll32.exe", "shell32.dll", "OpenAs_RunDLL", fileName.getAbsolutePath()}; //File open With
                break;
        }

        if (selecType == 0) {
            Desktop.getDesktop().open(fileName);
        } else if (selecType < 8) {
            Process runFile = new ProcessBuilder(commandText).start();
            runFile.waitFor();
        } else {
            String errorText = "\nChoose a number from 1 to 7\n\nExample : openFile(1,\"" + fileName + "\")\n\n";
            System.err.println(errorText);
            JOptionPane.showMessageDialog(null, errorText, "Error", 1);
        }

    }

}

여기 있습니다.

File myFile = new File("your any type of file url");
FileOpen.openFile(mContext, myFile);

패키지 내에 다른 클래스를 만듭니다.

// code to open default application present in the handset


public class FileOpen {

    public static void openFile(Context context, File url) throws IOException {
        // Create URI
        File file=url;
        Uri uri = Uri.fromFile(file);

        Intent intent = new Intent(Intent.ACTION_VIEW);
        // Check what kind of file you are trying to open, by comparing the url with extensions.
        // When the if condition is matched, plugin sets the correct intent (mime) type, 
        // so Android knew what application to use to open the file
        if (url.toString().contains(".doc") || url.toString().contains(".docx")) {
            // Word document
            intent.setDataAndType(uri, "application/msword");
        } else if(url.toString().contains(".pdf")) {
            // PDF file
            intent.setDataAndType(uri, "application/pdf");
        } else if(url.toString().contains(".ppt") || url.toString().contains(".pptx")) {
            // Powerpoint file
            intent.setDataAndType(uri, "application/vnd.ms-powerpoint");
        } else if(url.toString().contains(".xls") || url.toString().contains(".xlsx")) {
            // Excel file
            intent.setDataAndType(uri, "application/vnd.ms-excel");
        } else if(url.toString().contains(".zip") || url.toString().contains(".rar")) {
            // WAV audio file
            intent.setDataAndType(uri, "application/x-wav");
        } else if(url.toString().contains(".rtf")) {
            // RTF file
            intent.setDataAndType(uri, "application/rtf");
        } else if(url.toString().contains(".wav") || url.toString().contains(".mp3")) {
            // WAV audio file
            intent.setDataAndType(uri, "audio/x-wav");
        } else if(url.toString().contains(".gif")) {
            // GIF file
            intent.setDataAndType(uri, "image/gif");
        } else if(url.toString().contains(".jpg") || url.toString().contains(".jpeg") || url.toString().contains(".png")) {
            // JPG file
            intent.setDataAndType(uri, "image/jpeg");
        } else if(url.toString().contains(".txt")) {
            // Text file
            intent.setDataAndType(uri, "text/plain");
        } else if(url.toString().contains(".3gp") || url.toString().contains(".mpg") || url.toString().contains(".mpeg") || url.toString().contains(".mpe") || url.toString().contains(".mp4") || url.toString().contains(".avi")) {
            // Video files
            intent.setDataAndType(uri, "video/*");
        } else {
            //if you want you can also define the intent type for any other file

            //additionally use else clause below, to manage other unknown extensions
            //in this case, Android will show all applications installed on the device
            //so you can choose which application to use
            intent.setDataAndType(uri, "*/*");
        }

        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
        context.startActivity(intent);
    }
}

언급URL : https://stackoverflow.com/questions/550329/how-to-open-a-file-with-the-default-associated-program

반응형