表单传输数据的方法

      从form表单传输数据有几种方法:

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class MyInfoForm
 */
public class MyInfoForm extends HttpServlet {
    private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public MyInfoForm() {
        super();
        // TODO Auto-generated constructor stub
    }

    
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setCharacterEncoding("gb18030");
        PrintWriter out = response.getWriter();
        
        
        out.println("<h1>用户登录</h1>");
        out.println("<form action = '/ServletTest/RegisterCL'  method = 'post'>");
        out.println("用户名: <input type = 'text' name = 'username'/><br/>");
        out.println("密     码:<input type = 'password' name = 'password'/><br/>");
        out.println("性     别:<input type = 'radio' name = 'sex' value = '男'/>男 <input type = 'radio' name = 'sex' value = '女'/>女<br/>");
        out.println("爱     好:<input type = 'checkbox' name = 'hobby' value = '音乐'>音乐<input type = 'checkbox' name = 'hobby' value = '体育'>体育<input type = 'checkbox' name = 'hobby' value = '足球'>足球<br/>");
        out.println("城     市:<select name = 'city'> <option value = 'bj'>北京</option> <option value = 'cq'>重庆</option></select>");
        out.println("个人介绍:<textarea cols = '20' rows = '10' name = 'intro'></textarea>" );
        out.println("<input type = 'submit' value = '提交'/><br/>");
        out.println("</form>");
    }

    
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        this.doGet(request, response);
    }

}

      其中用户密码比较常见,用request.getParameter()直接提取即可,需要注意的是性别单选获取的,它使用的是“radio”属性,在获取它提交的数据时,获取到的是标签中value设定的值。

      爱好为复选项目,所以使用“checkbox”属性,它获取提交的数据也是value中的值,在获取时需注意的是因为他是复选,取到的是多个值,所以在获取时得到的是一个数组,而获取数组使用的方法是request.getParameterValues()。

      个人介绍为文本框,它直接获取文本框中所输入的信息,直接使用request.getParameter()获取即可;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class RegisterCL
 */
public class RegisterCL extends HttpServlet {
    private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public RegisterCL() {
        super();
        // TODO Auto-generated constructor stub
    }

    
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        PrintWriter out = response.getWriter();
        
        String u = request.getParameter("username");
        String p = request.getParameter("password");
        String sex = request.getParameter("sex");
        String[] hobby = request.getParameterValues("hobby");
        String city = request.getParameter("city");
        String intro = request.getParameter("intro");
        System.out.println(u);
        System.out.println(p);
        
        out.println("u = " + u);
        out.println("p = " + p);
        out.println("sex =" + sex);
        out.println("city = " + city);
        out.println("intro = " + intro);
        if(hobby != null){
            for(int i = 0; i < hobby.length; i++){
                out.println("hobby = " + hobby[i]);
            }
        }else{
            out.println("你没有选择爱好");
        }
        out.println("city = " + city);
    }

    
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        this.doGet(request, response);
    }

}

 

转载于:https://www.cnblogs.com/Draeen/p/4882644.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
移动飞信完美版C#源代码\FetionFx\AssemblyInfo.cs 移动飞信完美版C#源代码\FetionFx\FetionFx.csproj 移动飞信完美版C#源代码\FetionFx\Global.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Logger\ImpsLogger.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Logger\LogHeader.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\AboutMe.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\AdBarImp.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\AutoReconnect.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\BUserInfoControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Channel\BuddyMatchChannel.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Channel\CrbtChannel.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Channel\WebPageChannel.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ChannelManagerImp.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ContactInfoControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ContactManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ContinueUpdate.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ConversationManagerImp.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ConversationWindow.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Downloader.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\DownloadError.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\DownloadException.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Downloading.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\EndDownloadedEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\EntryPointControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\EraseAccountForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ExportContactsToCVS.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ExportContactsToVCard.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ExportContactsToXML.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ExportForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ExServiceMananger.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\FormConfirm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\FriendMatchingService.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\GroupSMSFailedForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\GroupSMSForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportContactsFromCSV.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportContactsFromOutlook.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportContactsFromVcard.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportContactsFromXML.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportExportManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImportForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImpsBasicService.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\ImpsMessageBox.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\InvisibleForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\InviteControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\InviteForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IPI\UI\RegisterIPIDialog.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IPI\UI\UnRegisterIPIDialog.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRFormBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRListBox.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRListItem.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRListItemEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IVRSeperatorItem.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\LiveUpdate.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\LiveUpdateException.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MainForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Message.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MessageCompare.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MessageHistoryForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MessageHistoryManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MessageList.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\MultiIVRForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\NetworkDetectForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\OfflineMsgSettingForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PortraitForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsBlackList.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsExControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsGeneralControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsHistroyControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsLongSmsSetting.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsPassControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsPermissionControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsPortraitControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\PsPrivacyControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SoundFile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsFileShareControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsGeneralControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsHotKeyControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsNetworkControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsSoundControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsStatusReplayControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\SsThemeControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options\TestConnect.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\OptionsControlBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\OptionsForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\OptionsManagerImp.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\PartDownloadedEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password\MobilePhonePage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password\PasswordPage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password\SetPasswordWizard.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password\StepPageBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password\SuccessPage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\PersistentManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Program.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\PromptLiveUpdate.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\CompactProfile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\InitBasicProfile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\InitBizProfile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\InitExProfile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\InitProfile.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\LicencePage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\PasswordPage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\ProfileControlBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\ProvisionWizard.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\ProvsionControlBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2\UnRegisterDialog.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SendFileToSelfForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SendSMSItem.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor\FullScreenSensor.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor\MouseKeyboardSensor.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor\PresenceSensorBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor\ScreenSaverSensor.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor\SysLockSensor.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SingleBeIviteForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SingleIVRForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\StaticTools.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SystemInfoNotify.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SystemMessage.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\SystemMessageManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\TickEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\TipMessageEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\AddMobileBuddyFeedbackForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\ComboBoxItem.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\ReceiveRequestByMobileNoForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\ReceiveRequestBySIDForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\ReceiveRequestVodafoneForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy\SendRequestForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\BasicProfilieControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\BusinessProfileControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactDelete.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactGroupForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactListControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactNotifyWindowManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactTreeGroupByType.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ContactTreeShowType.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ExtendProfileControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\InfoChangedEventArgs.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\InviteIICForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\InviteIICResponseForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\MyInfoForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\NodeKeyCollection.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\PermissionControl.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ProfileControlBase.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ProfileForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ProfileFormVodafone.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\ProfileManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\SystemFixContactGroupType.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\SystemFixedConactGroup_Terminal.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\SystemFixedContactGroupCollection.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\SystemFixedContactGroupHelper.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\SystemFixedContactGroup_Presence.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\TreeNodeContact.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\TreeNodeContactCollection.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\TreeNodeHash.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UnifiedMessageBox.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UpdateInfo.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UpdateType.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UserAccount\LoginFailedForm.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UserAccount\LoginFailedLog.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UserAccountManager.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\VodafoneService.cs 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\WorkPathInfo.cs 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.AboutMe.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.AdBarImp.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.BUserInfoControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ContactInfoControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ContinueUpdate.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ConversationWindow.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.DownloadError.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Downloading.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.EntryPointControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.EraseAccountForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ExportForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.FilesToPub.Portraits.Portraits.xml 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.FormConfirm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.GroupSMSFailedForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.GroupSMSForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ImportForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Imps.ico 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.ImpsMessageBox.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.InvisibleForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.InviteControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.InviteForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.IPI.UI.RegisterIPIDialog.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.IPI.UI.UnRegisterIPIDialog.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.MainForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.MessageHistoryForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.MultiIVRForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.NetworkDetectForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.OfflineMsgSettingForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PortraitForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsBlackList.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsExControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsGeneralControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsHistroyControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsLongSmsSetting.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsPassControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsPermissionControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsPortraitControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.PsPrivacyControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsFileShareControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsGeneralControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsHotKeyControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsNetworkControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsSoundControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsStatusReplayControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.SsThemeControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Options.TestConnect.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.OptionsControlBase.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.OptionsForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Password.MobilePhonePage.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Password.PasswordPage.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Password.SetPasswordWizard.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Password.SuccessPage.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.PromptLiveUpdate.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Properties.Resources.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.CompactProfile.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.InitBasicProfile.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.InitBizProfile.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.InitExProfile.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.InitProfile.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.LicencePage.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.PasswordPage.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.ProvisionWizard.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Provsion2.UnRegisterDialog.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.Resources.Capture.png 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.SendFileToSelfForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.SingleBeIviteForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.SingleIVRForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.AddBuddy.AddMobileBuddyFeedbackForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.AddBuddy.ReceiveRequestByMobileNoForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.AddBuddy.ReceiveRequestBySIDForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.AddBuddy.ReceiveRequestVodafoneForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.AddBuddy.SendRequestForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.BasicProfilieControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.BusinessProfileControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ContactDelete.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ContactGroupForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ContactListControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ExtendProfileControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.InviteIICForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.InviteIICResponseForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.MyInfoForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.PermissionControl.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ProfileControlBase.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ProfileForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UIContactList.ProfileFormVodafone.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UserAccount.LoginFailedForm.resources 移动飞信完美版C#源代码\FetionFx\Imps.Client.Pc.UserAccount.LoginFailedLog.resources 移动飞信完美版C#源代码\readme.txt 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IPI\UI 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList\AddBuddy 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Channel 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\IPI 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Options 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Password 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Provsion2 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\Sensor 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UIContactList 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc\UserAccount 移动飞信完美版C#源代码\FetionFx\Imps\Client\Logger 移动飞信完美版C#源代码\FetionFx\Imps\Client\Pc 移动飞信完美版C#源代码\FetionFx\Imps\Client 移动飞信完美版C#源代码\FetionFx\Imps 移动飞信完美版C#源代码\FetionFx 移动飞信完美版C#源代码

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值