/utility

Utility classes for many purpose

Primary LanguageJava

##############################################################

A MODULE MAVEN WITH MANY UTILITY CLASS FOR MANY PURPOSE###

############################################################## ######################### ###Last Update: 2016-04-07 ######################### Class utility for the third library:

  • Many Useful Class for Play with the JDK version 7
  • JDOM
  • JDOM2
  • Hibernate 4 (in progress)
  • Jena 2
  • Sesame OpenRDF
  • VirtJena (Sesame Adapter for Virtuoso )
  • Cumulus RDF (Sesame Adapter for Cassandra)
  • JSoup
  • JOOQ 3
  • HTTP Apache
  • ecc...

Other useful utility on these repository: https://github.com/mhgrove/cp-common-utils https://github.com/mhgrove/cp-openrdf-utils

(For the future try to put some best performance for JDK version 8)

Any Help,suggestion or improvement for this utility is welcome!!

P.S. I'm need help for create very useful method for update xml file without create/delete already exists file with only jdk use wihout third library.

For the rest do what you want with these file.

Release

You can the dependency to this github repository With jitpack (https://jitpack.io/):

<dependency>
  <groupId>com.github.p4535992</groupId>
  <artifactId>utility</artifactId>
  <version>1.6.10</version>
</dependency>  
<script> var user = 'p4535992'; // Replace with your user/repo var repo = 'utility' var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { var myArr = JSON.parse(xmlhttp.responseText); populateRelease(myArr); } } xmlhttp.open("GET", "https://api.github.com/repos/" user + "/" + repo + "/releases", true); xmlhttp.send(); function populateRelease(arr) { var release = arr[0].tag_name; document.getElementById("latest_release").innerHTML = release; } </script>