Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to suppress FindBugs warning (hard coded reference to an absolute pathname)? [duplicate]

i am just testing some things for the opensource software Geonetwork and now I want to export a shape file from my postGIS database to my computer but I cant test it cause I always get a findbugs warning : Hard coded reference to an absolute pathname in org.fao.geonet.services.resources.Download.exec(Element, ServiceContext)

Does anyone know how to suppress or to avoid this warning? Or another solution how I can test if the export works?

Here is the Code:

  ` Map parameter1= new HashMap();
    parameter1.put("dbtype", "postgis");        
    parameter1.put("host", "localhost");        
    parameter1.put("port", "5433");  
    parameter1.put("database", "geonetwork");
    parameter1.put("schema", "mydata");
    parameter1.put("user", "postgres");        
    parameter1.put("passwd", "dominik1");
    parameter1.put("Expose primary keys", false);
    parameter1.put(PostgisNGDataStoreFactory.VALIDATECONN, true);
    parameter1.put(PostgisNGDataStoreFactory.MAX_OPEN_PREPARED_STATEMENTS, 100);
    parameter1.put(PostgisNGDataStoreFactory.LOOSEBBOX, true);
    parameter1.put(PostgisNGDataStoreFactory.PREPARED_STATEMENTS, true); 
    System.out.println("parameter1: " + parameter1);

    DataStore pds = new PostgisNGDataStoreFactory().createDataStore(parameter1);
    FeatureSource fs = pds.getFeatureSource("dano");

    SimpleFeatureCollection fc = (SimpleFeatureCollection) fs.getFeatures();
    SimpleFeature f = (SimpleFeature) fc.toArray()[0];

    // create shapefile

    File sfile = new File("C:/Users/Tinis/Downloads/dano.zip");            
    parameter1 = new HashMap();
    parameter1.put("url", sfile.toURI().toURL());
    parameter1.put("create spatial index", Boolean.FALSE);


    DirectoryDataStore dds = new DirectoryDataStore(new File(sfile.getAbsolutePath()), (FileStoreFactory) new ShapefileDataStoreFactory.ShpFileStoreFactory(new ShapefileDataStoreFactory(), parameter1));    

    dds.createSchema(fc.getSchema());
    String typeName = dds.getTypeNames()[0];
    SimpleFeatureSource featureSource = dds.getFeatureSource(typeName);
    SimpleFeatureStore featureStore = (SimpleFeatureStore) featureSource;

    // write data to shapefile
    Transaction t = new DefaultTransaction("addTransaction");
    featureStore.setTransaction(t);
    featureStore.addFeatures(fc);
    t.commit();
    t.close(); `

The line which gives the findbugs warning is just after the // create shapefile comment

I hope someone can help me with this problem. Thank you!

like image 323
Patrick Giersch Avatar asked Aug 20 '14 12:08

Patrick Giersch


2 Answers

Make a xxx.properties file (ResourceBundle) with an entry:

danoZip = C:/Users/Tinis/Downloads/dano.zip

And do it indirect:

ResourceBundle bundle = ResourceBundle.getBundle("xxx");

String danoZipPath = bundle.getString("danoZip");

File sfile = new File(danoZipPath);            

In this way you put the configuration of a hard-coded file in a configurable properties file.

like image 87
Joop Eggen Avatar answered Oct 19 '22 15:10

Joop Eggen


You can use a filter file to describe bugs to ignore.

http://findbugs.sourceforge.net/manual/filter.html

like image 24
Brett Okken Avatar answered Oct 19 '22 14:10

Brett Okken