I am calling a .NET service using Java, which is returning a string of data representing the bytes of a csv string. I've heavily truncated the response below to show the encoding format I receive it as:
77u/UHJvDQoNCg==
I now want to convert this data back to a csv string so I can see its original csv format. I have tried to convert it back to a byte[] and also encode with UTF-8 and UTF-16 but it just shows the string as above. How can I convert it back to a csv string?