Posts by Luiz Felipe Rodrigues • 1 point
4 posts
-
0
votes0
answers44
viewsQ: How to check the change of an Array in JS
I have an object array and want to perform a function when it changes its value (adding or removing the items). I’m using the md-checkbox of Angularjs with the checklist-model to include values…
-
0
votes0
answers11
viewsQ: Substring in a Querydsl
I have a class called Methodoavaliacaoprecojusto, it has 3 fields called link1, Link2 and link3. I want to get a list of all domains without repeating. In that case the links would come…
-
0
votes2
answers28
viewsA: Apache POI is separating the Runs in the wrong place
The way I solved that was to join the runs in a single run: if (runs.size() > 1) { StringBuilder texto = new StringBuilder(); do { texto.append(runs.get(0).getText(0)); if (runs.size() == 1)…
-
-2
votes2
answers28
viewsQ: Apache POI is separating the Runs in the wrong place
I’m learning to work on Apache POI to work with docx documents and I’m trying to do some checks on an existing document: XWPFDocument doc = new…