Posts by Rodrigo Prestes Machado • 19 points
3 posts
-
0
votes2
answers1833
viewsA: Database insertion via Webservice
You will need to create a client for a Web Service, Netbeans will help you, so follow the link below: https://netbeans.org/kb/docs/websvc/client_pt_BR.html Then create the client, implement some web…
-
1
votes2
answers731
viewsA: Extract JSON array data on Android received by Datasnap
Maybe you can use Google’s GSON library (https://code.google.com/p/google-gson/) and transform String into a Java object, for example: String strJson = "{\"name\":\"Fulano\"}"; Gson gson = new…
-
-1
votes2
answers128
viewsA: Create spreadsheet by adding images and changing color of lines
The simplest way to create an Excel spreadsheet is to modify the response header and turn the page into spreadsheet: $fileName = "planilha.xls"; header("Content-type: application/vnd.ms-excel");…