【问题标题】:How to open a file with the default associated program如何使用默认关联程序打开文件
【发布时间】:2009-02-15 04:36:57
【问题描述】:

如何使用 Java 中的默认关联程序打开文件? (例如电影文件)

【问题讨论】:

  • 如果您使用的是JavaFX,请转到herehere

标签: java desktop


【解决方案1】:

您可以使用Desktop.getDesktop().open(File file)。有关其他选项,请参阅以下问题:“[Java] How to open user system preffered editor for given file?

【讨论】:

  • 我在尝试使用电影文件时不断收到此异常,但它适用于图像文件 (bmp):java.io.IOException: 无法打开文件:/D:/vidz/2006-04 -02.wmv。错误信息:参数不正确。
  • 您能在问题中提供您的代码吗?另外,您使用的是哪个操作系统和 Java 版本?
  • 我不明白的是它适用于图像......无论如何我使用的是 Java 1.6.0.06,代码如下: File file = new File(MoviePlay.getInstance().getBasePath (), 电影文件.getPath());试试 { Desktop.getDesktop().open(file); } 捕捉(前) { ... }
  • 我知道这已经很长时间了,但是……问题出在我的机器上。我的 Windows XP 中的默认程序关联不正常,我在其他程序中遇到问题。从那以后我尝试了其他机器,这种方法效果很好!接受!
  • 添加到这个旧答案;如果打开的目的是为了编辑,也可以使用.edit()。一些系统有不同的默认查看和编辑应用程序; .open() 将打开查看器。
【解决方案2】:

SwingHacks 有针对旧版 Java 的解决方案。

我认为他们使用 Runtime 对象在 windows 上执行“启动”命令,在 mac 上也有类似的命令。

【讨论】:

    【解决方案3】:

    给你:

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

    【讨论】:

    • 或者您可以像这样更改 if 条件
    • if(url.getPath().endsWith(".jpg") || url.getPath().endsWith(".jpeg")|| url.getPath().endsWith(". png")) { intent.setDataAndType(uri,"image/*"); }
    • 这仅适用于 Android。它不是适用于所有平台的解决方案。
    • 作为一名安卓开发者,我认为这对至少安卓开发者会有帮助
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-01-31
    • 1970-01-01
    • 2020-08-29
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多