Transform the IEEEtaxonomy from txt to rdf in java.
##Previous steps This program needs the IEEE taxonomy in plain text. To did it, I have used pdfbox and manually fixed some issues:
- at the end of every page there was a tabular o other character and,
- some lines have been joined.
Once you have the IEEE taxonomy ready in plain text, save it in resources directory. I have used IEEE_computers_done_manual.txt as filename. If you want another name, go to Ieee2owl.java, in the main method and change the first line,
File ieeeFile=new File("resources/IEEE_computers_acronyms_done_manual.txt");
for
File ieeeFile=new File(THE NAME OF YOUR FILE);