FilePermission.hashCode() has the following syntax.
public int hashCode()
In the following code shows how to use FilePermission.hashCode() method.
/*from www . j av a2s.c o m*/ import java.io.FilePermission; import java.io.IOException; public class Main { public static void main(String[] args) throws IOException { FilePermission fp = new FilePermission("C://test.txt", "read"); // the hash code value int hash = fp.hashCode(); System.out.print("Hash Code: " + hash); } }
The code above generates the following result.