Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crash on Linux #11

Open
honghaoz opened this issue Dec 29, 2017 · 0 comments
Open

Crash on Linux #11

honghaoz opened this issue Dec 29, 2017 · 0 comments

Comments

@honghaoz
Copy link

I got an error when running an app on Ubuntu.

Fatal error: init(contentsOfFile:usedEncoding:) is not yet implemented: file Foundation/NSString.swift, line 1308

It's caused by this line

public convenience init(filePath: String, delimiter: Character = ",", lineSeparator: Character = "\n") throws {
    let fileContent = try String(contentsOfFile: filePath) // <-- this line
    try self.init(content: fileContent, delimiter: delimiter, lineSeparator: lineSeparator)
  }

You should consider to use the same method with explicit encoding.
Following code works well on Ubuntu:

let fileContent = try String(contentsOfFile: filePath, encoding: .utf8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant