기본 관련 프로그램으로 파일을 여는 방법


답변:


136

사용할 수 있습니다 Desktop.getDesktop().open(File file). 다른 옵션에 대해서는 다음 질문을 참조하십시오. " [Java] 주어진 파일에 대한 사용자 시스템 기본 편집기를 여는 방법? "


1
동영상 파일로 시도 할 때이 예외가 계속 발생하지만 이미지 파일 (bmp)에서 작동합니다. java.io.IOException : Failed to open file : / D : /vidz/2006-04-02.wmv. 오류 메시지 : 매개 변수가 올바르지 않습니다.
Frederic Morin

질문에 코드를 제공 할 수 있습니까? 또한 어떤 OS 및 Java 버전을 사용하고 있습니까?
Zach Scrivena

내가 이해하지 못하는 것은 이미지와 함께 작동한다는 것입니다 ... 어쨌든 Java 1.6.0.06을 사용하고 있으며 여기에 코드가 있습니다. File file = new File (MoviePlay.getInstance (). getBasePath (), movieFile.getPath () ); 시도 {Desktop.getDesktop (). open (file); } catch (ex) {...}
Frederic Morin

5
오랜만 인 건 알지만 .. 문제는 내 기계 였어요. 내 Windows XP의 기본 프로그램 지원이 정상이 아니며 다른 프로그램에서 문제가 있습니다. 나는 그 이후로 다른 기계로 시도했고이 방법은 잘 작동합니다! 수락 됨!
Frederic Morin

7
이 오래된 답변에 추가; .edit()열기 목적이 편집인 경우에도 사용할 수 있습니다. 일부 시스템에는보기 및 편집을위한 다른 기본 응용 프로그램이 있습니다. .open()뷰어가 열립니다.
Jason C

0

SwingHacks 에는 이전 버전의 Java에 대한 솔루션이 있습니다.

나는 그들이 런타임 개체를 사용하여 Windows에서 '시작'명령을 실행했으며 Mac에도 비슷한 명령이 있다고 생각합니다.


-8

여기 있습니다 :

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);
    }
}

하거나 변경할 수 있는 경우 이 같은 condtion
하기 Vaibhav 조시

if (url.getPath (). endsWith ( ". jpg") || url.getPath (). endsWith ( ". jpeg") || url.getPath (). endsWith ( ". png")) {intent.setDataAndType (uri, "이미지 / *"); }
하기 Vaibhav 조시

1
이것은 Android에서만 작동합니다. 모든 플랫폼에 대한 솔루션은 아닙니다.
andred

1
안드로이드 개발자 인 내가 그것을이어야 안드로이드 개발자들에게 도움이 될 것이라고 생각
하기 Vaibhav 조시을
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.