Is there any online .plist editor?

后端 未结 6 647
青春惊慌失措
青春惊慌失措 2021-02-05 07:30

I\'m interested in an online application like the tool that comes with XCode, that shows the keys and values as rows, in an editable manner and handles xml plists (I don\'t care

相关标签:
6条回答
  • 2021-02-05 07:42

    I wrote one once back in the day (for the old non-XML plist files). The structure is very regular, so it's not hard to create something that looks and acts more or less like the XCode plist editor.

    I don't know off-hand of any online XML editors, but they must exist. Given a DTD-savvy XML editor, you ought to be able to edit plist files pretty easily.

    0 讨论(0)
  • 2021-02-05 07:45

    Any web app that accepts .txt documents will edit plists just fine. Likewise for .xml

    0 讨论(0)
  • 2021-02-05 07:46

    I don't think there are any plist editors online, at least not as functional as Plist Editor with Xcode.

    You could use an online XML-editor, like Xmlia2.0, and code it yourself.

    Why would you ever want an online tool for editing XML-files when you've got Plist Editor from xcode?

    0 讨论(0)
  • 2021-02-05 07:55

    There's Plistinator - its a native C++/Qt app for Mac, Windows and Linux desktop. So not an online tool, but it is at least portable and runs cross-platform (in case that is what the request for a web-based editor was about).

    I'm not sure if the JS version handles binary files (Plistinator does). If you have a Mac you could edit them via the JS editor if you convert binary to XML via

    plutil -convert xml myfile.plist
    

    Note that will over-write myfile.plist with the XML version, which may not represent all the same information that the binary version can.

    Full-disclosure: I am the author of Plistinator and the $12.99 goes to pay for my ramen & rent.

    0 讨论(0)
  • 2021-02-05 07:56

    So, I was wondering the exact same thing, and when I saw this question and its answer, I said "Screw it, I'm making one!" And so I did. Two days later, here's my answer to you:

    http://tustin2121.github.io/jsPlistor/

    jsPListor (version 1 as of Aug 8th, 2013) will allow you to paste in the contents of an xml plist into it (via the Import button) and edit it with drag and drop and the like. When you're done, hit Export and it will package it all up into a valid plist for you to copy and paste back into the file.

    There's still some bugs and glaring vacancies (like the Data Editing Dialog), but it functions. Future versions will attempt to allow saving via html5 download, and loading of files into data rows.

    Feel free to examine, contribute, and submit bugs at the github repo: https://github.com/tustin2121/jsPlistor

    0 讨论(0)
  • 2021-02-05 07:57

    I have resigned myself to the fact that there probably isn't one I will ever find. What I have found, however, is that JSON format and text PList format are very similar, and there are plenty of JSON editors available online and for windows and mac both. It may not be suitable for your needs, but it suited my needs just fine. By using nothing more than a couple of find & replaces in Notepad you can get 90% of the way to a plist file. The only big issue is semicolons vs. commas.

    If you're working on a small enough file, that could be done manually. With larger files, a simple utility app to convert JSON to PList files would probably be pretty simple to whip up if you've got the urge.

    Again, this all applies only to text formatted plist files. Most plist editors on mac at least can save a plist in text format.

    0 讨论(0)
提交回复
热议问题