Posts by LSouza • 166 points
5 posts
-
2
votes1
answer566
viewsA: Because my program does not generate CSV in UTF-8 that can be read correctly by Excel, but Notepad generates
Try starting your file with ufeff. That is the mark BOM (Binary Byte Order) of UTF-8.
-
2
votes1
answer424
viewsA: File size in windows and linux
It looks like you are transferring in text mode and Filezilla is changing the characters indicating the end of the Windows default ("r n") to Linux (" n"). Try to change the transfer mode to binary.…
-
1
votes3
answers173
viewsA: Are there any techniques to apply maintenance in the code?
You are basically making comparisons of strings to define the code flow. Regular expressions can make your code cleaner. Lesson: Regular Expressions Java Regex - Tutorial However, regular…
-
5
votes3
answers6760
viewsA: When is the use of an Enterprise Service Bus (ESB) recommended?
These are some situations for which a service bus is a solution recommended: when three or more applications need to be integrated in an orchestrated way when the services that will be incorporated…
-
5
votes3
answers6760
viewsQ: When is the use of an Enterprise Service Bus (ESB) recommended?
I am at the beginning of the development of a system that provides communication with some other systems through Web Services. Now our system will be the provider of services, or consumer of…