Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Williamx committed Feb 3, 2018
1 parent 1b5872d commit 5ee9ebb
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Lichia
Biblioteca Java para abstracao de dados apartir de uma String XML

<h7>Importamos as classes JAVA</h7><BR><code><pre>
<h7>Importamos as classes JAVA</h7><BR>
<B>import lichia.LichiaHTTP;</B>
<code><pre>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
Expand All @@ -13,10 +15,10 @@ import lichia.LichiaHTTP;
import java.util.List;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Element;
</pre></code>
import org.w3c.dom.Element;</pre></code>

<h7>Instanciamos as classes</h7><BR><code><pre>public class Lichia {
<h7>Instanciamos as classes</h7><BR><code><pre>
public class Lichia {
    public static void main(String[] args) throws Exception{ 
LichiaHTTP conectar = new LichiaHTTP();       
conectar.setMetodo("GET");       
Expand All @@ -32,12 +34,12 @@ import org.w3c.dom.Element;
lerxml.LerXML().item(i).getTextContent() 
);               
}
}
catch(Exception e ) 
{        
e.getMessage();              
}   
}   
}   
}   
    }</pre></code>
<h7>Entendendo o Codigo...</h7><BR>
<B>Instanciamos a classe HTTP responsavel pela conexao.</B>
Expand Down

0 comments on commit 5ee9ebb

Please sign in to comment.