Как в яблочко вернуть содержимое файла в сети? - PullRequest
0 голосов
/ 25 февраля 2011

Как в яблочном скрипте я могу вернуть содержимое файла в Интернете?Так что, если бы я сделал foo.com/untitled.txt, он дал бы мне содержимое этого файла.

Ответы [ 2 ]

2 голосов
/ 25 февраля 2011

Я бы предложил использовать do shell script для вызова утилиты командной строки curl для выполнения работы, например так:

set theText to do shell script "/usr/bin/curl http://foo.com/test.txt"
0 голосов
/ 27 февраля 2011
on curl(URI)
    tell me to do shell script "/usr/bin/curl " & quoted form of URI
end curl

Или другим способом:

on temporaryFile()
    tell me to POSIX file (do shell script "/usr/bin/mktemp " & quoted form of (POSIX path of (path to temporary items from user domain) & (do shell script "/usr/bin/basename " & quoted form of POSIX path of (path to me) & " '.app'") & "XXXXXXXX")) as alias
end temporaryFile

on fetchPage(URI)
    set temporaryFile0 to my temporaryFile()
    tell application "URL Access Scripting"
        --progress,form data,directory listing,download directory,authentication
        download URI to temporaryFile0 replacing yes
    end tell
    set fileReference to open for access temporaryFile0
    try
        set returnValue to read fileReference
    on error number -39
        set returnValue to ""
    end try
    close access fileReference
    tell application "Finder" to delete temporaryFile0
    returnValue
end fetchPage
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...