File: H5ObjectEx_T_VLString.java

package info (click to toggle)
jhdf 2.11.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 39,996 kB
  • ctags: 17,959
  • sloc: java: 100,416; ansic: 24,920; sh: 2,256; makefile: 957; cpp: 48
file content (56 lines) | stat: -rw-r--r-- 1,743 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package examples.datatypes;

import ncsa.hdf.object.Datatype;
import ncsa.hdf.object.FileFormat;
import ncsa.hdf.object.h5.H5Datatype;
import ncsa.hdf.object.h5.H5File;
import ncsa.hdf.object.h5.H5ScalarDS;

public class H5ObjectEx_T_VLString 
{
    private static String FILENAME = "H5ObjectEx_T_VLString.h5";
    private static String DATASETNAME = "DS1";

    private static void createDataset() {
        H5File      file = null;
        String[] str_data = { "Parting", "is such", "sweet", "sorrow." };
        long[]  dims = { str_data.length };
        final H5Datatype typeVLStr = new H5Datatype(Datatype.CLASS_STRING, -1, -1, -1);

        // Create a new file using default properties.
        try {
            file = new H5File(FILENAME, FileFormat.CREATE);

            // Create the dataset and write the string data to it.
            file.createScalarDS(DATASETNAME, null, typeVLStr, dims, null, null, 0, str_data);
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    private static void readDataset() {
        H5File file = null;
        H5ScalarDS dset = null;
        String[] str_data = { "", "", "", "" };

        try {
            file = new H5File(FILENAME, FileFormat.READ);
            dset = (H5ScalarDS) file.get(DATASETNAME);
            str_data = (String[]) dset.read();
        } 
        catch (Exception e) {
            e.printStackTrace();
        }
        
        for (int indx = 0; indx < str_data.length; indx++)
            System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]);

    }    

    public static void main(String[] args) {
        H5ObjectEx_T_VLString.createDataset();
        H5ObjectEx_T_VLString.readDataset();
    }

}