函数“WSAStringToAddress”不适用于简写ipv6表示法:: 1,使用完整表示法时工作正常0:0:0:0:0:0:0:1

时间:2016-07-31 12:26:56

标签: c++ c sockets

我正在尝试使用mingw(gcc 4.9.3)在Windows 8上编译套接字编程示例。当使用ipv6地址的完整表达时 WCHAR IPAddr [256] = L“0:0:0:0:0:0:0:1”;它工作正常,但使用WCHAR IPAddr [256] = L“:: 1”;返回错误代码10022。

TextView step[] = new TextView[4];
step[0] = (TextView) findViewById(R.id.textview1);
step[1] = (TextView) findViewById(R.id.textview2);
step[2] = (TextView) findViewById(R.id.textview3);
step[3] = (TextView) findViewById(R.id.textview4);

Resources res = getResources();
String[] steps = res.getStringArray(R.array.dance_steps);

for(int i = 0 ; i < 4 ; i++){
    step[i].setText(steps[i]);
}

0 个答案:

没有答案