Jump to content
We've recently updated our Privacy Statement, available here ×

Change in character encoding with v3.5.3


jbuberel

Recommended Posts

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

 This new class file, newly introduced in 3.5.3, seems to be the most likely source of the problem I am seeing.

That being said, I'm no closer to a resolution. 

 

 

Code:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.jaspersoft.ireport.designer.utils;import java.nio.charset.Charset;import org.netbeans.spi.queries.FileEncodingQueryImplementation;import org.openide.filesystems.FileObject;/** * * @author gtoffoli */public class FileEncodingQueryImpl extends FileEncodingQueryImplementation{    @Override    public Charset getEncoding(FileObject arg0) {        System.out.println("Charset used: UTF-8!!!!");        System.out.flush();        return Charset.forName("UTF-8");    }}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...