日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java快捷键查看目录,java取得快捷方式指向的路径

發布時間:2024/7/23 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java快捷键查看目录,java取得快捷方式指向的路径 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

當前位置:我的異常網? 行業應用???java取得快捷方式指向的路徑

java取得快捷方式指向的路徑

www.myexceptions.net??網友分享于:2013-08-17??瀏覽:5次

java獲得快捷方式指向的路徑

import java.io.ByteArrayOutputStream;

import java.io.File;

import java.io.FileInputStream;

/**

* 獲得快捷方式指向的路徑

* @author shk

*

*/

public class LnkParser {

public static void main(String[] args) throws Exception {

new LnkParser(new File("C://temps//config.text.lnk"));

}

public LnkParser(File f) throws Exception {

parse(f);

}

private boolean is_dir;

public boolean isDirectory() {

return is_dir;

}

private String real_file;

public String getRealFilename() {

return real_file;

}

private void parse(File f) throws Exception {

// read the entire file into a byte buffer

FileInputStream fin = new FileInputStream(f);

ByteArrayOutputStream bout = new ByteArrayOutputStream();

byte[] buff = new byte[256];

while (true) {

int n = fin.read(buff);

if (n == -1) {

break;

}

bout.write(buff, 0, n);

}

fin.close();

byte[] link = bout.toByteArray();

// get the flags byte

byte flags = link[0x14];

// get the file attributes byte

final int file_atts_offset = 0x18;

byte file_atts = link[file_atts_offset];

byte is_dir_mask = (byte) 0x10;

if ((file_atts & is_dir_mask) > 0) {

is_dir = true;

} else {

is_dir = false;

}

// if the shell settings are present, skip them

final int shell_offset = 0x4c;

final byte has_shell_mask = (byte) 0x01;

int shell_len = 0;

if ((flags & has_shell_mask) > 0) {

// the plus 2 accounts for the length marker itself

shell_len = bytes2short(link, shell_offset) + 2;

}

// get to the file settings

int file_start = 0x4c + shell_len;

// get the local volume and local system values

final int basename_offset_offset = 0x10;

final int finalname_offset_offset = 0x18;

int basename_offset = link[file_start + basename_offset_offset]

+ file_start;

int finalname_offset = link[file_start + finalname_offset_offset]

+ file_start;

String basename = getNullDelimitedString(link, basename_offset);

String finalname = getNullDelimitedString(link, finalname_offset);

real_file = basename + finalname;

System.out.println("快捷方式指向的文件路徑為:"+real_file);

}

private static String getNullDelimitedString(byte[] bytes, int off) {

int len = 0;

// count bytes until the null character (0)

while (true) {

if (bytes[off + len] == 0) {

break;

}

len++;

}

return new String(bytes, off, len);

}

/*

* convert two bytes into a short note, this is little endian because it's

* for an Intel only OS.

*/

private static int bytes2short(byte[] bytes, int off) {

int n = 0;

for (int i = start, k = start + len % 5; i < k; i++) {

n += (bys[i] & 0xff) << (i * (8));

}

return n;

}

文章評論

總結

以上是生活随笔為你收集整理的java快捷键查看目录,java取得快捷方式指向的路径的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。