首页 > 代码库 > java创建快捷方式
java创建快捷方式
- package com.ts.util.ex.project;
- import net.jimmc.jshortcut.JShellLink;
- /**
- * 快捷方式工具类
- *
- * @author ice(古雨QQ:494174519,13728989948(你的代码改进,是对我们共同的鼓励))
- *
- */
- public class ShortCut {
- // 需要先下载jshortcut.jar直接在百度搜一下
- public static void main(String args[]) {
- String fileFolderPath = "D:\\test\\jshortcut-0_4.jar";
- String writeFolderPath = "D:\\new";
- createShortCut(fileFolderPath, writeFolderPath);
- String path=getShortCutRealPath(writeFolderPath);
- System.out.println(path);
- }
- /**
- * 创建一个快捷方式
- *
- * @param fileOrFolderPath
- * 源文件夹路径
- * @param writeShortCutPath
- * 目标文件路径(快捷方式型)
- */
- public static void createShortCut(String fileOrFolderPath,String writeShortCutPath) {
- JShellLink link = new JShellLink();
- writeShortCutPath.replaceAll("/", "\\");
- String folder = writeShortCutPath.substring(0, writeShortCutPath.lastIndexOf("\\"));
- String name = writeShortCutPath.substring(writeShortCutPath.lastIndexOf("\\") + 1, writeShortCutPath.length());
- link.setName(name);// 目的快捷方式文件夹名称
- link.setFolder(folder);// 目的快捷方式文件路径片段
- link.setPath(fileOrFolderPath);
- link.save();
- }
- /**
- * 获取一个快捷方式真实地址
- *
- * @param fileFolderPath
- * 源文件夹路径
- */
- public static String getShortCutRealPath(String fileFolderPath) {
- // 根据快捷方式的路径和文件夹名,获取源文件夹地址
- fileFolderPath.replaceAll("/", "\\");
- String folder = fileFolderPath.substring(0, fileFolderPath.lastIndexOf("\\"));
- String name = fileFolderPath.substring(fileFolderPath.lastIndexOf("\\") + 1, fileFolderPath.length());
- JShellLink link = new JShellLink(folder, name);
- link.load();
- return link.getPath();
- }
- }
java创建快捷方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。