Adding a feature to read all keys and their respective values (Java side).
[iotcloud.git] / version2 / src / java / simple_test / Read.java
diff --git a/version2/src/java/simple_test/Read.java b/version2/src/java/simple_test/Read.java
new file mode 100644 (file)
index 0000000..71140b8
--- /dev/null
@@ -0,0 +1,20 @@
+import iotcloud.*;
+import java.util.Set;
+import java.util.HashSet;
+
+class Read {
+    public static void main(String[] args) throws Exception {
+
+
+        Table t1 = new Table("http://dc-6.calit2.uci.edu/test.iotcloud/", "reallysecret", 41567, -1);
+        // t1.initTable();
+        t1.rebuild();
+
+               Set<IoTString> keySet = t1.getKeys();
+               for(IoTString key : keySet) {
+                       System.out.print("Key: " + key.toString() + " -> ");
+               IoTString val = t1.getCommitted(key);
+                       System.out.println("Value: " + val.toString());         
+               }
+    }
+}