我正在编写一个程序(对于Mac OS X,使用Objective-C),我需要以编程方式创建一堆.webloc文件。
.webloc文件只是将URL从Safari的位置栏拖放到某个文件夹后创建的文件。
一般来说,我需要一种方法来在文件系统中创建指向Web中某个位置的项目。据我所知,在Mac OS X上应该使用.webloc文件。
那么,是否可以制作一个.webloc文件,其中包含有效的网址和一些标题?
答案 0 :(得分:21)
鲜为人知 - 但是weblocs还有一个简单的基于plist的文件格式。
创建webloc文件时,不需要使用其他三张海报描述的资源方法保存它们。你也可以写一个简单的plist:
?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>URL</key>
<string>http://apple.com</string>
</dict>
</plist>
二进制资源格式仍处于活动状态,如果要读取plist文件,则确保需要同时读取这两种文件格式。但是在编写文件时 - 使用基于plist的格式 - 这要容易得多。
答案 1 :(得分:7)
.webloc
个文件(更一般地说,Internet位置文件)是以一种格式编写的,其定义可以追溯到Mac OS 8.x.它是基于资源的,源自从拖动对象(如文本或图像)创建文件时获得的剪切格式。
所写的资源是'url '
256和'TEXT'
256,它们存储URL,以及可选的“urln”256,其中包含与URL关联的文本。 'drag'
128指向其他两个(或三个)资源。
NTWeblocFile是Cocoatech Open Source framework CocoaTechFoundation(获得BSD许可)的一部分,支持从Objective-C编写这些文件。如果要分别为URL指定标题,则需要修改该类,以便将除URL以外的内容写入'urln'
资源。
在Mac OS X 10.3及更高版本中,URL也会写入(也可能会写入)文件数据分叉中的属性列表。请参阅其他答案,了解其工作原理......
答案 2 :(得分:6)
.webloc
文件的数据分叉中没有任何内容;相反,它将其引用的URL存储为其资源fork中的资源。您可以使用DeRez(1)工具
这里我在.webloc
文件上运行它,我从Safari地址栏中拖出这个问题:
% DeRez "Desktop/Crafting .webloc file - Stack Overflow.webloc"
data 'drag' (128, "Crafting .webloc file -#1701953") {
$"0000 0001 0000 0000 0000 0000 0000 0003" /* ................ */
$"5445 5854 0000 0100 0000 0000 0000 0000" /* TEXT............ */
$"7572 6C20 0000 0100 0000 0000 0000 0000" /* url ............ */
$"7572 6C6E 0000 0100 0000 0000 0000 0000" /* urln............ */
};
data 'url ' (256, "Crafting .webloc file -#1701953") {
$"6874 7470 3A2F 2F73 7461 636B 6F76 6572" /* http://stackover */
$"666C 6F77 2E63 6F6D 2F71 7565 7374 696F" /* flow.com/questio */
$"6E73 2F31 3436 3537 352F 6372 6166 7469" /* ns/146575/crafti */
$"6E67 2D77 6562 6C6F 632D 6669 6C65" /* ng-webloc-file */
};
data 'TEXT' (256, "Crafting .webloc file -#1701953") {
$"6874 7470 3A2F 2F73 7461 636B 6F76 6572" /* http://stackover */
$"666C 6F77 2E63 6F6D 2F71 7565 7374 696F" /* flow.com/questio */
$"6E73 2F31 3436 3537 352F 6372 6166 7469" /* ns/146575/crafti */
$"6E67 2D77 6562 6C6F 632D 6669 6C65" /* ng-webloc-file */
};
data 'urln' (256, "Crafting .webloc file -#1701953") {
$"4372 6166 7469 6E67 202E 7765 626C 6F63" /* Crafting .webloc */
$"2066 696C 6520 2D20 5374 6163 6B20 4F76" /* file - Stack Ov */
$"6572 666C 6F77" /* erflow */
};
可能需要的唯一资源是ID为256的'url '
和'TEXT'
资源,这些资源可能也不需要资源名称。如果您想要包含URL指向的文档的标题,'urln'
资源可能会很方便。 'drag'
资源告诉系统这是一个剪辑文件,但我不确定它是否需要在这个时代存在。
要使用资源和文件的资源分支,您可以使用资源管理器 - Carbon的基础部分之一,它可以返回到原始Mac。但是,资源管理器有几个Cocoa包装器,例如Nathan Day's NDResourceFork。
答案 3 :(得分:4)
制作“网页快捷方式”的另一种方法是此处提到的.url
文件。
内容看起来像(比基于xml的plist简单得多):
[InternetShortcut]
URL=http://www.apple.com/
注意文件有3行,最后一行是空的。
答案 4 :(得分:2)
它使用基于资源叉的二进制格式。
有效的解决方法:
答案 5 :(得分:1)
以下是Google Chrome的用途:WriteURLToNewWebLocFileResourceFork
答案 6 :(得分:0)
这是基本任务,无需任何第三方库。 (警告:最小错误检查。)
// data for 'drag' resource (it's always the same)
#define DRAG_DATA_LENGTH 64
static const unsigned char _dragData[DRAG_DATA_LENGTH]={
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03,
0x54, 0x45, 0x58, 0x54, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x75, 0x72, 0x6C, 0x20, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x75, 0x72, 0x6C, 0x6E, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
static void _addData(NSData *data, ResType type, short resId, ResFileRefNum refNum)
{
Handle handle;
if (PtrToHand([data bytes], &handle, [data length])==noErr) {
ResFileRefNum previousRefNum=CurResFile();
UseResFile(refNum);
HLock(handle);
AddResource(handle, type, resId, "\p");
HUnlock(handle);
UseResFile(previousRefNum);
}
}
void WeblocCreateFile(NSString *location, NSString *name, NSURL *fileUrl)
{
NSString *contents=[NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
@"<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
@"<plist version=\"1.0\">\n"
@"<dict>\n"
@"<key>URL</key>\n"
@"<string>%@</string>\n"
@"</dict>\n"
@"</plist>\n", location];
if ([[contents dataUsingEncoding:NSUTF8StringEncoding] writeToURL:fileUrl options:NSDataWritingAtomic error:nil])
{
// split into parent and filename parts
NSString *parentPath=[[fileUrl URLByDeletingLastPathComponent] path];
NSString *fileName=[fileUrl lastPathComponent];
FSRef parentRef;
if(FSPathMakeRef((const UInt8 *)[parentPath fileSystemRepresentation], &parentRef, NULL)==noErr)
{
unichar fileNameBuffer[[fileName length]];
[fileName getCharacters:fileNameBuffer];
FSCreateResFile(&parentRef, [fileName length], fileNameBuffer, 0, NULL, NULL, NULL);
if (ResError()==noErr)
{
FSRef fileRef;
if(FSPathMakeRef((const UInt8 *)[[fileUrl path] fileSystemRepresentation], &fileRef, NULL)==noErr)
{
ResFileRefNum resFileReference = FSOpenResFile(&fileRef, fsWrPerm);
if (resFileReference>0 && ResError()==noErr)
{
_addData([NSData dataWithBytes:_dragData length:DRAG_DATA_LENGTH], 'drag', 128, resFileReference);
_addData([location dataUsingEncoding:NSUTF8StringEncoding], 'url ', 256, resFileReference);
_addData([location dataUsingEncoding:NSUTF8StringEncoding], 'TEXT', 256, resFileReference);
_addData([name dataUsingEncoding:NSUTF8StringEncoding], 'urln', 256, resFileReference);
CloseResFile(resFileReference);
}
}
}
}
}
}