Posts by nothing • 91 points
5 posts
-
2
votes1
answer286
viewsA: Problems when starting Mongodb
The result seems that the server is not in the air. Before executing the "Mongo" command you must execute the command to start the "mongod" server"
-
0
votes1
answer841
viewsA: Updating a field in Mongodb
Try to execute the following command on the console of the Mongo: (replace the <collection> by the right name) db.<collection>.update({"sensores.id" : 2 }, { $set: {…
-
1
votes1
answer1869
views -
2
votes2
answers7455
viewsA: Change banner according to screen size?
If you want to do in javascript: // convém estar no onload da janela window.onload = function() { // primeiro tens de sacar a dimensão da janela // neste caso a área visível do browser var largura =…
-
1
votes1
answer77
viewsA: Doubt/Problem With Webservice on Android
If you are using the Entityutils.toString() method then you can define the encoding of the message. eg: string data = EntityUtils.toString(<resposta do web service>,HTTP.UTF_8); being of the…