How to open .jl file

I want to open a .jl file and convert it to a readable file preferably in .xls format. I do not have any any idea about Julia language. Is there a file opener for jl files?

0

3 Answers

I came here with the same question, but since the file I was looking at was clearly JSON data, I did some more searching.

The .jl file extension also refers to JSON lines, sometimes instead a .jsonl extension.

More here:

You can search for .json to Excel to find a converter, e.g. (this worked fine on my JSON lines file).

A .jl file is a julia script. It is source code. Not data.

You can open it up in any text editor, e.g. notepad on windows. However, it won't normally contain anything useful to you unless you want to edit that code. (It might contain some array literals that you want, I guess)

Perhaps you mean to ask "How can I open a .jld file"? Which is a julia HDF5 file. In which case please ask another question.

As I see, Julia is a script language therefor the file can be opened in a text editor like Notepad++, Vim, etc. Do not use word processor (like LibreOffice Writer) if you want to modify it, but it's OK if you want to read only.

To get started:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like