C: Convert string to unsigned long long Error











up vote
1
down vote

favorite












I'm simply trying to convert a String (readed from a line in a file) in a long long variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)



#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read

typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;

// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};

// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------

int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}

// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}

struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;

if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}

// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}

// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}

array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;

return(array);
}

// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing

printf("nLoading data from file...n");

FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}

char *read_line_p;
char buffer[1024];
int buf_size = 1024;

while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");

char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));

strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);

/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);

struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;

generic_array_add(array, (void*) record_p);

free(read_line_p);
}

fclose(dataset_p);
printf("nData loadedn");
}


Here's the file which I want to read, it's a simple .txt file:



9
8
7
6
5
4
3
2
2
1
10









share|improve this question
























  • Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
    – Jabberwocky
    Nov 8 at 9:39

















up vote
1
down vote

favorite












I'm simply trying to convert a String (readed from a line in a file) in a long long variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)



#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read

typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;

// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};

// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------

int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}

// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}

struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;

if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}

// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}

// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}

array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;

return(array);
}

// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing

printf("nLoading data from file...n");

FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}

char *read_line_p;
char buffer[1024];
int buf_size = 1024;

while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");

char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));

strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);

/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);

struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;

generic_array_add(array, (void*) record_p);

free(read_line_p);
}

fclose(dataset_p);
printf("nData loadedn");
}


Here's the file which I want to read, it's a simple .txt file:



9
8
7
6
5
4
3
2
2
1
10









share|improve this question
























  • Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
    – Jabberwocky
    Nov 8 at 9:39















up vote
1
down vote

favorite









up vote
1
down vote

favorite











I'm simply trying to convert a String (readed from a line in a file) in a long long variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)



#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read

typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;

// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};

// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------

int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}

// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}

struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;

if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}

// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}

// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}

array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;

return(array);
}

// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing

printf("nLoading data from file...n");

FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}

char *read_line_p;
char buffer[1024];
int buf_size = 1024;

while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");

char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));

strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);

/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);

struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;

generic_array_add(array, (void*) record_p);

free(read_line_p);
}

fclose(dataset_p);
printf("nData loadedn");
}


Here's the file which I want to read, it's a simple .txt file:



9
8
7
6
5
4
3
2
2
1
10









share|improve this question















I'm simply trying to convert a String (readed from a line in a file) in a long long variable. My problem is that i get Segmentation Fault, and I don't know why... Here's the code: (I put a comment on the error on the "3° Call" function)



#define CAPACITY (unsigned long long) 11
#define INTEGERS_PATH // the path to the file I wish to read

typedef struct {
void** array;
unsigned long long el_num;
unsigned long long array_capacity;
int (*compare)(void*,void*);
} GenericArray;

// used for compare elements
struct record{
char* string_field; // used in case the GenericArray is made of strings items
long long integer_field; // used in case the GenericArray is made of long long items
};

// END OF STRUCTS ---------------------------------------------------------------------------------
// BEGIN OF FUNCTIONS -----------------------------------------------------------------------------

int main(int argc, char const *argv) {
test_with_comparison_function(compare_record_int_field);
return (EXIT_SUCCESS);
}

// Compare function passed to generic_array_create() for create the GenericArray
static int compare_record_int_field(void* r1_p,void* r2_p){
if(r1_p == NULL){
fprintf(stderr,"compare_record_int_field: the first parameter is a null pointer");
exit(EXIT_FAILURE);
}
if(r2_p == NULL){
fprintf(stderr,"compare_record_int_field: the second parameter is a null pointer");
exit(EXIT_FAILURE);
}

struct record *rec1_p = (struct record*)r1_p;
struct record *rec2_p = (struct record*)r2_p;

if(rec1_p->integer_field < rec2_p->integer_field){
return(1);
}
return(0);
}

// 1° Call
static void test_with_comparison_function(int (*compare)(void*, void*)) {
GenericArray* array = generic_array_create(compare);
load_array(array);
print_array(array); // it prints the array
free_array(array); // it frees the memory alocated by the array
}

// 2° Call
GenericArray *generic_array_create(int (*compare)(void*,void*)){
GenericArray *array = malloc(sizeof(GenericArray));
if(array == NULL){
fprintf(stderr, "generic_array_create: unable to allocate memory for the generic array");
exit(EXIT_FAILURE);
}

array->array = malloc(CAPACITY * sizeof(void*));
array->el_num = 0;
array->array_capacity = CAPACITY;
array->compare = compare;

return(array);
}

// 3° Call
static void load_array(GenericArray* array){
clock_t start = clock(); // for timing

printf("nLoading data from file...n");

FILE * dataset_p = fopen(INTEGERS_PATH, "r");
if(dataset_p == NULL){
fprintf(stderr,"main: unable to open the file");
exit(EXIT_FAILURE);
}

char *read_line_p;
char buffer[1024];
int buf_size = 1024;

while(fgets(buffer, buf_size, dataset_p) != NULL){
read_line_p = malloc((strlen(buffer) + 1) * sizeof(char));
strcpy(read_line_p, buffer);
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");

char *string_field_1 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));
char *string_field_2 = malloc((strlen(string_field_in_read_line_p) + 1) * sizeof(char));

strcpy(string_field_1,string_field_in_read_line_p);
strcpy(string_field_2,string_field_in_read_line_p);

/* Here begins errors (SEGMENTATION FAULT) */
int integer_field = atoi(integer_field_in_read_line_p);
long long integer_field = strtoll(integer_field_in_read_line_p, (char **) NULL, 10);

struct record *record_p = malloc(sizeof(struct record));
record_p->string_field = string_field_1;
record_p->integer_field = integer_field;

generic_array_add(array, (void*) record_p);

free(read_line_p);
}

fclose(dataset_p);
printf("nData loadedn");
}


Here's the file which I want to read, it's a simple .txt file:



9
8
7
6
5
4
3
2
2
1
10






c segmentation-fault strtoull






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 8 at 9:38









Some programmer dude

290k24241400




290k24241400










asked Nov 8 at 9:33









Lorenzo Tabasso

187




187












  • Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
    – Jabberwocky
    Nov 8 at 9:39




















  • Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
    – Jabberwocky
    Nov 8 at 9:39


















Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
– Jabberwocky
Nov 8 at 9:39






Check if integer_field_in_read_line_p is NULL. strtok may return NULL.
– Jabberwocky
Nov 8 at 9:39














1 Answer
1






active

oldest

votes

















up vote
3
down vote



accepted










The problem is these three lines:



while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");


The fgets function reads one line, and leaves the newline 'n' at the end of that. That means there's only one 'n' in the string you attempt to tokenize. So the second call to strtok should return NULL.



You don't check for that, and therefore any dereference of that NULL pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.






share|improve this answer





















  • You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
    – Lorenzo Tabasso
    Nov 8 at 9:47











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204913%2fc-convert-string-to-unsigned-long-long-error%23new-answer', 'question_page');
}
);

Post as a guest
































1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote



accepted










The problem is these three lines:



while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");


The fgets function reads one line, and leaves the newline 'n' at the end of that. That means there's only one 'n' in the string you attempt to tokenize. So the second call to strtok should return NULL.



You don't check for that, and therefore any dereference of that NULL pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.






share|improve this answer





















  • You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
    – Lorenzo Tabasso
    Nov 8 at 9:47















up vote
3
down vote



accepted










The problem is these three lines:



while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");


The fgets function reads one line, and leaves the newline 'n' at the end of that. That means there's only one 'n' in the string you attempt to tokenize. So the second call to strtok should return NULL.



You don't check for that, and therefore any dereference of that NULL pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.






share|improve this answer





















  • You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
    – Lorenzo Tabasso
    Nov 8 at 9:47













up vote
3
down vote



accepted







up vote
3
down vote



accepted






The problem is these three lines:



while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");


The fgets function reads one line, and leaves the newline 'n' at the end of that. That means there's only one 'n' in the string you attempt to tokenize. So the second call to strtok should return NULL.



You don't check for that, and therefore any dereference of that NULL pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.






share|improve this answer












The problem is these three lines:



while(fgets(buffer, buf_size, dataset_p) != NULL){
// ...
char *string_field_in_read_line_p = strtok(read_line_p, "n");
char *integer_field_in_read_line_p = strtok(NULL, "n");


The fgets function reads one line, and leaves the newline 'n' at the end of that. That means there's only one 'n' in the string you attempt to tokenize. So the second call to strtok should return NULL.



You don't check for that, and therefore any dereference of that NULL pointer (which happens in the conversion functions) will lead to undefined behavior and possible crashes.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 8 at 9:38









Some programmer dude

290k24241400




290k24241400












  • You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
    – Lorenzo Tabasso
    Nov 8 at 9:47


















  • You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
    – Lorenzo Tabasso
    Nov 8 at 9:47
















You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47




You get exatcly the point! Your solution worked! I'm gonna mark your answer as the solution in 3 minutes! Thank you!
– Lorenzo Tabasso
Nov 8 at 9:47


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204913%2fc-convert-string-to-unsigned-long-long-error%23new-answer', 'question_page');
}
);

Post as a guest




















































































Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?