Posts by Thuan Saraiva • 22 points
6 posts
-
0
votes2
answers873
viewsA: How to count the spaces of a String in java
int count = 0; String s = "Conte os espaços desta String "; for(int i=0; i<s.length(); i++ ){ if( s.charAt(i) == ' ' ) { count++; } } …
javaanswered Thuan Saraiva 22 -
0
votes1
answer158
viewsA: How to Insert List with JPA
I had a family problem, in my case my object was not compressed so I put @GZIP @POST @GZIP @Consumes(Mediatype.APPLICATION_JSON) public response saveData(@GZIP Recievingdata Customer);…
-
0
votes2
answers2070
viewsA: How do I emulate an Ionic 2 application on the tablet, and also as Gero a . ipa and . apk?
Your question is very generic, Well recommend reading the documentation of Ionic that explains in detail the step by step to deploy your application on both Android and iOS.…
-
-1
votes1
answer530
viewsA: How can I catch only the latitude and longitude of return of this Function(Location)?
Try this: function showPosition(position) { return position.coords.latitude + "," + position.coords.longitude; }
-
0
votes1
answer1886
viewsA: How to import projects and modules from Android Studio via Git
Hello, first you should have GIT installed on your PC, do you have it? If the project is on a link you can make a "git clone" by the IDE (Android Studio) that has a native plugin for Version…
-
0
votes2
answers730
viewsA: How do I view all commit files in a branch?
I think it might help you "After you have created several commits, or if you have cloned a Repository with an existing commit history, you’ll probably want to look back to see what has happened. The…
gitanswered Thuan Saraiva 22