0

こんにちは、

名前付きパイプを使用して、C++ プログラムから Java にデータを転送しています。

私の問題は、私が読んだ各行が各文字の間に1つのスペース( " ")で受信されることです。例:

Sent : 25343,398843292,55871844,492974923,-0.042,-0.022,2.474
Receive : 2 5 3 4 3 , 3 9 8 8 4 3 2 9 2 , 5 5 8 7 1 8 4 4 , 4 9 2 9 7 4 9 2 3 , - 0 . 0 4 2 , - 0 . 0 2 2 , 2 . 4 7 4

私のQはなぜそれが起こっているのですか、どうすればこれを回避できますか.

C++ パイプのコード:

#include "stdafx.h"
///// SERVER PROGRAM /////

#include <iostream>
#include <windows.h>
using namespace std;

int main(int argc, const char **argv)
{
    wcout << "Creating an instance of a named pipe..." << endl;

    // Create a pipe to send data
    HANDLE pipe = CreateNamedPipe(
        L"\\\\.\\pipe\\my_pipe", // name of the pipe
        PIPE_ACCESS_DUPLEX, // 1-way pipe -- send only
        PIPE_TYPE_BYTE, // send data as a byte stream
        1, // only allow 1 instance of this pipe
        100, // no outbound buffer
        100, // no inbound buffer
        0, // use default wait time
        PIPE_ACCEPT_REMOTE_CLIENTS // use default security attributes
    );

    if (pipe == NULL || pipe == INVALID_HANDLE_VALUE) {
        wcout << "Failed to create outbound pipe instance.";
        // look up error code here using GetLastError()
        system("pause");
        return 1;
    }

    wcout << "Waiting for a client to connect to the pipe..." << endl;

    // This call blocks until a client process connects to the pipe
    BOOL result = ConnectNamedPipe(pipe, NULL);
    if (!result) {
        wcout << "Failed to make connection on named pipe." << endl;
        // look up error code here using GetLastError()
        CloseHandle(pipe); // close the pipe
        system("pause");
        return 1;
    }

    wcout << "Sending data to pipe..." << endl;
    int i = 0 ;
    for(i=0 ; i<100 ; i++){
    Sleep(25);

    // This call blocks until a client process reads all the data
    const wchar_t *data = L"25343,398843292,55871844,492974923,-0.042,-0.022,2.474\n";
    //const wchar_t *data = L"1,1,1,1,1,1,1\r\n";
    DWORD numBytesWritten = 0;
    result = WriteFile(
        pipe, // handle to our outbound pipe
        data, // data to send
        wcslen(data) * sizeof(wchar_t), // length of data to send (bytes)
        &numBytesWritten, // will store actual amount of data sent
        NULL // not using overlapped IO
    );


    if (result) {
        wcout << "Number of bytes sent: " << numBytesWritten << endl;
    } else {
        wcout << "Failed to send data." << endl;
        // look up error code here using GetLastError()
    }

    }
    // Close the pipe (automatically disconnects client too)
    CloseHandle(pipe);

    wcout << "Done." << endl;

    system("pause");
    return 0;
}

パイプを読み取る Java からのコード:

public void run() {
        mIsOn = true;
        RandomAccessFile pipe = null;
        try {
            pipe = new RandomAccessFile("\\\\.\\pipe\\my_pipe", "r");
        } catch (FileNotFoundException e1) {
            e1.printStackTrace();
        }
        // Main loop
        while (mIsOn) {
            String inData="";
            try {
                // Read from the pipe one line at a time
                inData = pipe.readLine();
                if (inData != null) {
                    System.out.println("Read from pipe :" + inData);//**Here it prints with spaces**
                    parseData(inData);
                }

            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        // Close the pipe at the end
        try {
            pipe.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

** parseData() で何が起こるのか疑問に思っている場合は、System.out(Read from pipe :" +data) のスペースがその前にあるため、いけません。

前もって感謝します

4

1 に答える 1

2

送信時にワイド文字を使用し、受信時に通常の Java 文字列を使用しています。wchar_t は通常 2 バイトであるため、C++ アプリは文字列内のすべての文字に対して 2 バイトを送信します。Java アプリはそれを読み取り、1 バイト文字に基づいて文字列を作成します。

送信時に通常の文字を使用するか、文字列を作成する前にバイトとして受信して変換する必要があります。

于 2013-09-11T08:06:14.447 に答える