I made a base code in XML and I would like to import the attributes and values according to the code:
<?xml version="1.0" encoding="UTF-8" ?>
<!-- MAIN SCRIPT FILE FOR JAVA 7u80 MINECRAFT SERVER -->
<params count="3">
<...
I have this code block:
xml = xml.Replace("<html>", "");
xml = xml.Replace("<head>", "");
xml = xml.Replace("</head>", "");
xml = xml.Replace("<body>", "<certidoes>");
xml...
I have a "problem" and I can not think of anything to solve it so I would like your help. I have a desktop system that is the intermediary between the server and my web system. This desktop system makes two queries in the database every hour and...
Hello, I have a problem in a txt file, I need to pass it sorted to xml, but this txt file is sorted in a very strange way.
Nº Estado Civil Grau de instrução Nº de filhos Sálario Idade
anos meses
1 solte...
How can I read an xml file that is generated online, is a file generated by my provider, link . It is generated only through my website but how can I read it and write to a database?
I'm using a TableLayout that contains EditText , and when the focus is on EditText the keyboard opens and stays in front of important information, I'd like to be able to squeeze the layout when I open the keyboard. For my ent...
Hello, I am doing a binding and I have only one of the properties of my Model that are appearing in my listView. Here is the code:
Adapter:
public class ProjectAdapter extends ArrayAdapter<Project>{
private List<Project> _p...
I have a Cross-Domain AJAX request that receives an XML. After a lot of work, I was able to download the XML but I do not know if I did it correctly because it never arrives at success . Here is the requisition code:
function refreshPage() {...
Using the nmap XML output for reachable virtual machines running on the same host machine - obtained with nmap -oX output.xml -sP 192.168.2.* , I'd like to get the IP address of each machine whose "vendor" attribute is QEMU Virtual NI...
I have my class:
public class Pessoa
{
public int Id {get;set;}
public string Nome {get;set;}
}
I'm trying to serialize to XML this my class.
public static string CreateXML(object o)
{
XmlSerializer xmlSer...