Tomas Andrle
Tomas Andrle

Reputation: 13344

Change text encoding for multiple files at once in Eclipse

I have some UTF-8 HTML templates in my Eclipse project and Eclipse keeps treating them as if they had a different encoding. It says the encoding is "determined from content". I want to force the correct encoding.

I can force it for a single file but setting an encoding for the parent folder won't affect the files in it because instead of the "inherit" option in the property sheet there's the "determined from content" thing in it's place.

Is it possible to set the encoding for all files in a Project at once?

Upvotes: 11

Views: 17617

Answers (3)

arty
arty

Reputation: 96

I've just solved this problem (eclipse 3.5.2)

Two steps required:

  1. Change text file encoding on the folder property page(.setting/org.eclipse.core.resources.prefs file has been created in my project)
  2. Change default encoding on *.html file content type on the Preference page General/Content Types

Upvotes: 8

Tomas Andrle
Tomas Andrle

Reputation: 13344

This was caused by a development version of Eclipse. In the latest official release (3.5) it is fixed.

Upvotes: 1

Joachim Sauer
Joachim Sauer

Reputation: 308001

I've only seen "determined from content" for XML files. In that case it's the only correct setting, because XML files have their encoding defined in their header, so forcing anything else would be a grave mistake.

If you still want to do it, you could try to view the file .settings/org.eclipse.core.resources.prefs in your project (that file may or may not exist dependin on wether you've manually set any encoding in the project or not).

Upvotes: 1

Related Questions