Posts by NewSystemsUnlimited • 15 points
9 posts
-
0
votes0
answers23
viewsQ: How to select a text within a string using php
I am using PHP. I would like to select a name or several according to what is passed in a string, and return that selection in bold. Ex: This code already returns my name, but only if it is a…
-
0
votes1
answer23
viewsA: Mysql query that returns only records that start with a particular chunk
I don’t quite understand your question, come on. What do you need? Ex. Field 1.1 1.2 1.3 1.4 ... 2.1 2.2 2.3 2.4 ... 11.1 11.2 11.3 11.4 These are the table fields, what do you go through to be…
-
0
votes0
answers31
viewsQ: How to show result of a modal search
I’m new to Frontend, I’d like to click on a button, show the user’s feedback in a modal. I already have the page showing the results, this working ok I would like to show now in a modal window to…
-
-2
votes1
answer58
viewsQ: Arraylist of classes
I have a main class that has auxiliary classes as attributes. Example: Main class MoedasList: public class MoedasList { public USD USD; public USDT USDT; public ARS ARS; } Each attribute is an…
-
0
votes1
answer72
viewsA: Convert JSON String to an Object - Java Android
SOLVED Class Coins public class Moedas { public USD USD; public com.newsystemsunlimited.com.br.conversordemoedas.entities.USD getUSD() { return USD; } public void…
-
1
votes1
answer72
viewsQ: Convert JSON String to an Object - Java Android
Hello, I’m getting the JSON string below, but I can’t put the values in the Class I created, all values are null. Any hint? JSON {"USDT":{"code":"USD", "codein":"BRLT", "name":"Dólar Turismo",…
-
0
votes1
answer43
viewsQ: Deserialize string json in obejto on android
I would like to transform this string into an object, alias, put the data of the jsom string into an object. I’m not succeeding, I’ve already received the code 200 of success and I also see that I…
-
0
votes1
answer43
viewsA: Deserialization Gson X Android
I made a change in the classes, I believe that starting from there it goes of right public class Dolardia { public String mContext; public list values; } public class Dolardiavalores { public float…
-
-2
votes1
answer43
viewsQ: Deserialization Gson X Android
I am unable to pass the value of the JSON string to an entity (OBJECT). I’ve already managed to receive JSON, and code 200 success. But I can’t put that value on the object (Deserialization). if…