Skip to content

Jackson encode all properties to base64

I have more than one class that I want to serialize using Jackson to generate Json, for example I need to encode all value of the json to base64, so I configure the object mapper like this The problem is it’s only encode the String type as the serializer only accept one type, is there any method to enco…

How to make solid color for databar in apache.poi

I’m trying to create a sheet with progress bar which will represent some progress. I’m using these libraries: org.apache.poi:poi:4.1.0 org.apache.poi:poi-ooxml:4.1.0 org.apache.poi:poi-ooxml-schemas:…

Send spinner data to database

I am trying to send data to database from a spinner I initialize the database like this SPINNER + ” TYPE “; And in insert data method I put it as Type spinner but this line gives me an error contentValues.put(SPINNER, spinner); what should I put there instead of put Answer You are trying to save a…