将诺基亚手机连接到笔记本电脑 [英] connecting a Nokia Mobile phone to Laptop

查看:98
本文介绍了将诺基亚手机连接到笔记本电脑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

:((大家好,

如何将移动设备连接到没有串行端口的笔记本电脑.但是,它有很多USB端口.

这样我就可以读取手机SIM并从计算机发送SMS消息.

使用C#plz从连接到GSM移动电话的笔记本电脑发送消息的任何其他选择都建议我一个不错的选择..仅使用笔记本电脑..

问候,
Martin

:(( HI Everybody,

How can I connect a mobile to my laptop which does not have the serial port ..however, it has lots of USB port.

so that I can read my mobiles SIM and Send SMS messge from Computer.

Any other options to send message from my laptop connected to a GSM mobile ..using C# plz suggest me a good option .. Only using laptop ..

Regards,
Martin

推荐答案

你好,

您可以使用蓝牙,本文将为您提供帮助:

http://dickchiang.blogspot.com/2008/09/bluetooth-programming-with- c.html [ ^ ]


用于将文件发送到蓝牙设备的示例代码下方(摘自同一篇文章).


hello,

you can use bluetooth,this article will help :

http://dickchiang.blogspot.com/2008/09/bluetooth-programming-with-c.html[^]


below the sample snippet used to send a file to bluetooth device (taken from the same article).


string filename = System.IO.Path.GetFileName(openFileDialog1.FileName);
Uri u = new Uri("obex-push://" + devAddr.ToString() + "/" + filename);
ObexWebRequest owr = new ObexWebRequest(u);
owr.ReadFile(openFileDialog1.FileName);
ObexWebResponse response = (ObexWebResponse)owr.GetResponse();
response.Close();




关于USB端口,您可以使用此方法获取
的端口号 进一步使用.




in regard to Usb port u can use this method to get the port number for
further using .

SerialPort.GetPortNames();



这是LibUSB代码的链接.它是用于控制USB端口的库.

http://sourceforge.net/apps/trac/libusb-win32/wiki [ ^ ]

祝您好运:)



Here is a link to the LibUSB code. It''s a lib for controlling usb ports.

http://sourceforge.net/apps/trac/libusb-win32/wiki[^]

good luck :)


首先提到诺基亚手机型号.

其次是无线选项,例如蓝牙.

您需要诺基亚PC套件,计算机中的蓝牙连接或USB到串行端口电缆以及能够通过电缆或蓝牙连接到计算机的诺基亚手机.

有关更多信息,请参见 http://www.nokia.co.uk/support/Learn-how/connect-phone-and-pc [
First mention the Nokia phone model.

Second there wireless options too like Bluetooth.

You need Nokia PC Suite, bluetooth connection in computer or USB to Serial port cable and nokia phone capable of connecting to computer via cable or bluetooth.

For further info see http://www.nokia.co.uk/support/learn-how/connect-phone-and-pc[^]


这篇关于将诺基亚手机连接到笔记本电脑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆