完美者(wmzhe.com)网站以软件下载为基础,改版后的网站对功能性板块进行扩充,以期能够解决用户在软件使用过程中遇见的所有问题。网站新增了“软件百科”、“锦囊妙技”等频道,可以更好地对用户的软件使用全周期进行更加专业地服务。
一款简单的本机IP查询工具。可以显示您的内部和外部IP地址。可将它设置为自动复制信息到剪贴板(第一个选项),同时也支持复制IP信息后自动关闭(首先勾选第二个选项,并运行在主程序目录下生成的注册表文件)。"锦囊妙技"栏目是聚合全网软件使用的技巧或者软件使用过程中各种问题的解答类文章,栏目设立伊始,小编欢迎各路软件大神朋友们踊跃投稿,在完美者平台分享大家的独门技巧。
本站文章素材来源于网络,大部分文章作者名称佚失,为了更利于用户阅读和使用,根据需要进行了重新排版和部分改编,本站收录文章只是以帮助用户解决实际问题为目的,如有版权问题请联系小编修改或删除,谢谢合作。
软件大小:256.58 KB
此音乐为由ANIME《蜂蜜与四叶草》(Honey and Clover )改编的真人版电影的原声音乐《Going to the sea》. 完整歌词: Let's get going to the sea Leaving all these troubles here Baby, take my hand We'll go after the wind Maybe you and I don't want no answers All these worries that we had They look small now that we're here Baby, all this time I've wanted to tell you that Baby, you have magic in your both hands Get on the wave I'll be fine if I'm with you Get on the wave All our dreams are waiting there So we go on and on P.S.真人电影版Honey and Clover Original Sound Track里的歌都是由菅野よう子谱写制作的. 网络上有很多下载的地方,我就不贴了。若实在找不到可以PM我。 希望有帮到你,祝天天开心~!
http://www.myip.cnwww.cz88.net 查看个人IP
import java.util.*; import java.net.*; public class getMyIP { public static void main(String[] args) { String IP = null; String host = null; try { InetAddress ia = InetAddress.getLocalHost(); host = ia.getHostName();//获取计算机名字 IP= ia.getHostAddress();//获取IP } catch(UnknownHostException e) { e.printStackTrace(); } System.out.println(host); System.out.println(IP); } }
用 ifconfig, ping等, 或者你可试试这个我写的perl脚本, 她会连接一个网站并返回本机的外部ip, 看看合不合用? #! /usr/bin/perl # get local ip from internet # curl -s checkip.dyndns.org | grep -Eo '[0-9\.]+' use strict; use warnings; use LWP::Simple; my $url = "http://checkip.dyndns.org"; my $ip = get($url); die "Could not open $url\n" unless defined $ip; if ( $ip =~ /[\d\.]+/ ){ $ip =~ s/[^\d\.]+//g; print "$ip\n" } #end script 把文件变为可执行, 在命令列键入 chmod +x 脚本名, 例如 chmod +x myip , 执行 ./myip 就可得到外部ip, 如不,就是未连上网际网络