Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static int encodeBodyDataLength(String[] values) {
int length = 0;
for (String value : values) {
length += value.getBytes().length;
}
return length;
}
}