-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathH4FileCreate.java
More file actions
executable file
·52 lines (45 loc) · 2.01 KB
/
Copy pathH4FileCreate.java
File metadata and controls
executable file
·52 lines (45 loc) · 2.01 KB
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
/*****************************************************************************
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of the HDF Java Products distribution. *
* The full copyright notice, including terms governing use, modification, *
* and redistribution, is contained in the files COPYING and Copyright.html. *
* COPYING can be found at the root of the source code distribution tree. *
* Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
****************************************************************************/
package javaExample;
import ncsa.hdf.object.*; // the common object package
import ncsa.hdf.object.h4.*; // the HDF4 implementation
/**
* <p>Title: HDF Object Package (Java) Example</p>
* <p>Description: this example shows how to create an empty HDF4 file using the
* "HDF Object Package (Java)".</p>
*
* @author Peter X. Cao
* @version 2.4
*/
public class H4FileCreate
{
private static String fname = "H4FileCreate.hdf";
public static void main( String args[] ) throws Exception
{
// retrieve an instance of H4File
FileFormat fileFormat = FileFormat.getFileFormat(FileFormat.FILE_TYPE_HDF4);
if (fileFormat == null)
{
System.err.println("Cannot find HDF4 FileFormat.");
return;
}
// create a new file with a given file name.
H4File testFile = (H4File)fileFormat.create(fname);
if (testFile == null)
{
System.err.println("Failed to create file:"+fname);
return;
}
}
}