Posts by Marcio Jasinski • 193 points
4 posts
-
2
votes1
answer214
viewsA: How to Capture Audio with HTML5 and Javascript?
In media it is not always easy to make a solution that works in all browsers. In addition, some cases may need to enable specific flags in Chrome for example. The function you mention is the most…
-
2
votes2
answers300
viewsA: Android: Saving Data in Files
Use a BufferedWriter with a FileWriter where the second parameter is true to make append in it (Filewriter): BufferedWriter writer = new BufferedWriter(new FileWriter(arquivo, true));…
-
1
votes1
answer568
viewsA: Java/eclipse does not recognize Path GET annotation
There is a situation very similar to yours in the stackoverflow.with. By this answer the solution is in the Java version. JDK 1.8 supports default methods interfaces involving new methods in legacy…
-
1
votes1
answer512
viewsA: find word inside array strings
It’s been a long time since I programmed in php but for what I read in documentation, the strpos() returns an integer and you compare it to Boolean there. By the documentation, use something like…